12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- [package]
- name = "triagebot"
- version = "0.1.0"
- authors = ["Mark Rousskov <mark.simulacrum@gmail.com>"]
- edition = "2021"
- [workspace]
- [dependencies]
- serde_json = "1"
- openssl = "0.10"
- dotenv = "0.15"
- reqwest = { version = "0.11.4", features = ["json", "blocking"] }
- regex = "1"
- lazy_static = "1"
- anyhow = "1"
- hex = "0.4"
- parser = { path = "parser" }
- rust_team_data = { git = "https://github.com/rust-lang/team" }
- glob = "0.3.0"
- toml = "0.5.1"
- hyper = { version = "0.14.4", features = ["server", "stream"]}
- tokio = { version = "1.7.1", features = ["macros", "time", "rt"] }
- futures = { version = "0.3", default-features = false, features = ["std"] }
- async-trait = "0.1.31"
- uuid = { version = "0.8", features = ["v4"] }
- tracing = "0.1"
- tracing-subscriber = { version = "0.3", features = ["env-filter"] }
- url = "2.1.0"
- once_cell = "1"
- chrono = { version = "0.4", features = ["serde"] }
- tokio-postgres = { version = "0.7.2", features = ["with-chrono-0_4", "with-serde_json-1"] }
- postgres-native-tls = "0.5.0"
- native-tls = "0.2"
- serde_path_to_error = "0.1.2"
- octocrab = "0.9.1"
- comrak = "0.8.2"
- route-recognizer = "0.3.0"
- cynic = { version = "0.14" }
- itertools = "0.10.2"
- tower = { version = "0.4.13", features = ["util", "limit", "buffer", "load-shed"] }
- github-graphql = { path = "github-graphql" }
- rand = "0.8.5"
- ignore = "0.4.18"
- [dependencies.serde]
- version = "1"
- features = ["derive"]
- [dependencies.tera]
- version = "1.3.1"
- default-features = false
- [profile.release]
- debug = 2
|