moderatior
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
[package]
name = "moderatior"
version = "0.1.0"
edition = "2021"

[dependencies]
tokio = { version = "1.28.2", features = [
  "net",
  "sync",
  "rt",
  "parking_lot",
], default-features = false }
serenity = { version = "0.12", features = [
  "builder",
  "client",
  "rustls_backend",
  "gateway",
  "model",
], default-features = false }
poise = { git = "https://github.com/serenity-rs/poise" }
anyhow = "1.0.75"
jemallocator-global = "0.3.2"
ahash = "0.8.11"
emojib = { git = "https://github.com/Apricot-Conservation-Project/emoji", package = "emoji" }
kv = { version = "0.24.0", features = ["bincode-value"] }
sled = { version = "0.34.7", features = ["compression"] }
diff = "0.1.13"
humantime = "2.1.0"
phf = "0.11.3"
mindus = { version = "5.0.29", default-features = false }

[build-dependencies]
emojib = { git = "https://github.com/Apricot-Conservation-Project/emoji", features = [
  "build",
], package = "emoji" }

[profile.release]
strip = true
lto = "thin"