-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (28 loc) · 1013 Bytes
/
Copy pathCargo.toml
File metadata and controls
30 lines (28 loc) · 1013 Bytes
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
[package]
name = "discordbot"
version = "0.1.0"
edition = "2021"
rust-version = "1.74"
authors = ["Riyu"]
license = "MIT"
publish = false
[dependencies]
anyhow = "1.0"
async-trait = "0.1"
chrono = { version = "0.4", features = ["serde"] }
dashmap = "6.1"
dotenvy = "0.15"
libsqlite3-sys = { version = "0.30", features = ["bundled"] }
rand = "0.8"
regex = "1.11"
reqwest = { version = "0.12", features = ["json", "gzip", "brotli", "rustls-tls"], default-features = false }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serenity = { version = "0.12.5", default-features = false, features = ["builder", "cache", "client", "gateway", "http", "model", "rustls_backend", "utils"] }
sqlx = { version = "0.8.6", features = ["runtime-tokio-rustls", "sqlite", "json", "chrono", "migrate"] }
thiserror = "2.0"
tokio = { version = "1.52.1", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt", "json"] }
[dev-dependencies]
tempfile = "3.23"