-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
37 lines (35 loc) · 1.05 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
[package]
name = "scripty_data_storage"
version = "1.0.0"
edition = "2021"
license = "EUPL-1.2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
csv = "1"
hex = "0.4"
rand = "0.8"
hound = "3"
dashmap = "6"
tracing = "0.1"
once_cell = "1"
ouroboros = "0.18"
parking_lot = "0.12"
scripty_db = { path = "../scripty_db" }
scripty_utils = { path = "../scripty_utils" }
scripty_redis = { path = "../scripty_redis" }
scripty_config = { path = "../scripty_config" }
aes-gcm = { version = "0.10", features = ["std"] }
tokio = { version = "1", features = ["parking_lot", "signal", "rt-multi-thread"] }
serenity = { git = "https://github.com/serenity-rs/serenity", branch = "next", features = [
"voice",
"dashmap",
"rustls_backend",
"model",
"gateway",
"cache",
"builder",
"collector",
"utils",
] }
sqlx = { version = "0.7", features = ["postgres", "macros", "migrate", "runtime-tokio-rustls"] }
poise = { git = "https://github.com/serenity-rs/poise", branch = "serenity-next", features = ["cache", "collector"] }