-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
58 lines (53 loc) · 1.5 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
58
[package]
name = "sushii-rules"
version = "0.1.0"
authors = ["drklee3 <[email protected]>"]
edition = "2018"
default-run = "sushii-rules"
[lib]
name = "sushii_rules"
path = "src/lib.rs"
[[bin]]
name = "sushii-rules"
path = "src/main.rs"
[[bin]]
name = "sushii-rules-exporter"
path = "src/export.rs"
[dependencies]
aho-corasick = "0.7.15"
anyhow = "1.0.40"
async-recursion = "0.3.2"
async-trait = "0.1.42"
chrono = { version = "0.4", features = ["serde"] }
config = "0.11.0"
dashmap = { version = "4.0.2", features = ["serde"] }
deadpool-redis = "0.7.1"
dotenv = "0.15.0"
futures = "0.3.12"
handlebars = "3.5.3"
language-api = { git = "https://github.com/sushiibot/language-api", rev ="761f467177fdb287c2a3bf9e10e4cd46bcf81ca5" }
lingua = "1.2.0"
metrics = "0.14.2"
metrics-exporter-prometheus = "0.3.0"
metrics-util = "0.6.2"
redis = { version = "0.20", features = ["tokio-comp"] }
reqwest = "0.11.3"
schemars = { version = "0.8.0", features = ["chrono", "preserve_order", "uuid"] }
serde = { version = "1.0.125", features = ["derive"] }
serde_json = "1.0"
sqlx = { version = "0.5.2", features = ["runtime-tokio-rustls", "uuid", "json"] }
thiserror = "1.0.24"
tokio = { version = "1.2.0", features = ["full"] }
tracing = "0.1.25"
tracing-subscriber = "0.2.17"
twilight-http = "0.3.8"
twilight-model = "0.3.7"
typemap_rev = "0.1.4"
typetag = "0.1"
uuid = { version = "0.8", features = ["serde"] }
futures-util = "0.3.14"
async-stream = "0.3.1"
tokio-stream = "0.1.5"
lapin = "1.7.1"
[dependencies.sushii-model]
path = "../sushii-model"