forked from rust-lang/triagebot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
57 lines (52 loc) · 1.56 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "triagebot"
version = "0.1.0"
authors = ["Mark Rousskov <[email protected]>"]
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", "serde"] }
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", "with-uuid-0_8"] }
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 = "2.0.0" }
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"
postgres-types = { version = "0.2.4", features = ["derive"] }
cron = { version = "0.12.0" }
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.tera]
version = "1.3.1"
default-features = false
[profile.release]
debug = 2