-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
81 lines (72 loc) · 2.24 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[package]
name = "slimebot"
edition = "2021"
readme = "README.md"
license = "AGPL-3.0"
[profile.release]
strip = true
lto = true
codegen-units = 1
opt-level = "z"
[profile.dev]
lto = false
opt-level = 0
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.74"
arc-swap = "1.7.1"
chrono = { version = "0.4.31", default-features = false }
config = { version = "0.13.3", default-features = false, features = ["toml"] }
mongodb = "2.8.2"
openssl = { version = "0.10.62", features = ["vendored"] }
paste = "1.0.14"
poise = "0.6.1"
rand = "0.8.5"
regex = "1.10.3"
reqwest = { version = "0.11.18", default-features = true, features = ["json"] }
scraper = { version = "0.20", default-features = false }
serde = { version = "1.0.*", default-features = false }
serde_json = { version = "1.0.*", default-features = false }
thiserror = "1.0.57"
tinyvec = { version = "1.6.0", features = ["alloc", "serde", "rustc_1_55"] }
tokio = "1.32.0"
tracing = { version = "0.1.37", default-features = false, features = [
"valuable",
] }
tracing-subscriber = { version = "0.3.17", features = [
"env-filter",
"fmt",
"ansi",
], default-features = false }
tracing-test = "0.2.4"
tracing-unwrap = { version = "0.10.0", default-features = false }
time = "0.3.36"
backoff = { version = "0.4.0", features = ["tokio"] }
url = { version = "2.5.1", features = ["serde"] }
base64 = "0.22.1"
thisslime = "0.5.1"
kwordle = { git = "https://github.com/perpetualcacophony/kwordle", branch = "master", features = [
"serde_derive",
"classic_words",
"step",
], optional = true, version = "0.5.5" }
dynasty2 = { git = "https://github.com/perpetualcacophony/dynasty2", optional = true }
dotenvy = "0.15.7"
vaultrs = { version = "0.7.2", optional = true }
nvee = { git = "https://github.com/perpetualcacophony/nvee" }
toml = "0.8.19"
[dev-dependencies]
pretty_assertions = "1.4.0"
temp-mongo = "0.1.3"
[build-dependencies]
built = { version = "0.7.4", features = ["git2"] }
git2 = { version = "0.19", features = ["vendored-libgit2"] }
[features]
default = []
wordle = ["dep:kwordle"]
nortverse = []
dynasty = ["dep:dynasty2"]
full = ["wordle", "nortverse"]
docker = ["full", "vault"]
docker-secrets = []
vault = ["dep:vaultrs"]