-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
56 lines (52 loc) · 1.8 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
[package]
name = "sweetiebot"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
twilight-model = "0.15"
twilight-http = { default-features = false, version = "0.15", features = ["native", "simd-json"] }
twilight-gateway = { default-features = false, version = "0.15", features = ["native", "simd-json"] }
twilight-cache-inmemory = "0.15"
twilight-standby = "0.15"
twilight-util = { version = "0.15", features = ["builder"]}
twilight-mention = "0.15"
twilight-interactions = "0.15"
twilight-validate = "0.15"
futures = "0.3"
tokio = { version = "1.24", features = ["full"] }
tokio-stream = "0.1"
tokio-util = "0.7"
dotenvy = "0.15"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
smallvec = "1.10"
anyhow = { version = "1.0", features = ["backtrace"] }
reqwest = { version = "0.11", features = ["json", "brotli", "multipart", "stream"] }
scraper = "0.17"
urlencoding = "2.1"
skia-safe = { version = "0", features = ["textlayout"] }
image = "0.24"
wana_kana = "3.0"
include_dir = "0.7"
lazy_static = "1.4"
itertools = "0.11"
bytes = "1"
regex = "1"
substring = "1.4"
sqlx = { version = "0.7", features = ["runtime-tokio-native-tls", "mysql", "macros", "migrate", "time", "tls-native-tls"] }
html-escape = "0.2"
tokio-cron-scheduler = "*"
tempfile = "3"
chrono = { version = "0.4", default-features = false, features = ["serde", "clock", "std", "wasmbind"] }
rand = "0.8.5"
bonsaidb = { version = "0.4", features = ["local-full"] }
once_cell = "1.16.0"
sentry = { version = "0.31", features = ["anyhow"] }
fluent-bundle = "0.15"
unic-langid = { version = "0.9.1", features = ["macros"] }
intl-memoizer = "0.5.1"
phf = { version = "0.11.1", features = ["macros"] }
base64 = "0.21"
[profile.dev.package.sqlx-macros]
opt-level = 3