-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
43 lines (39 loc) · 966 Bytes
/
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
[package]
name = "moxie-discord-bot"
version = "0.7.0"
edition = "2021"
[workspace]
members = [".", "entity", "migration"]
[dependencies]
sea-orm = { workspace = true }
anyhow = "1.0.66"
entity = { path = "entity" }
itertools = "0.14.0"
poise = "0.6.1"
rand = "0.8.5"
rand_distr = "0.4.3"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serenity = { version = "0.12.0", default-features = false, features = [
"client",
"gateway",
"rustls_backend",
"model",
] }
shuttle-runtime = "0.49.0"
shuttle-serenity = "0.49.0"
shuttle-shared-db = { version = "0.49.0", features = ["postgres"] }
tokio = "1.26.0"
tracing = "0.1.37"
strum = { version = "0.26.3", features = ["derive"] }
thiserror = "2.0.3"
chrono = "0.4.38"
nom = "7.1.3"
derive_setters = "0.1.6"
[workspace.dependencies]
sea-orm = { version = "1", default-features = false, features = [
"sqlx-postgres",
"runtime-tokio-rustls",
"macros",
"with-chrono",
] }