23 lines
759 B
TOML
23 lines
759 B
TOML
[package]
|
|
name = "memejoin-rs"
|
|
version = "0.1.1-alpha"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
axum = "0.6.9"
|
|
chrono = "0.4.23"
|
|
futures = "0.3.26"
|
|
reqwest = "0.11.14"
|
|
serde = "1.0.152"
|
|
serde_json = "1.0.93"
|
|
serenity = { version = "0.11.5", default-features = false, features = ["client", "gateway", "rustls_backend", "model", "cache", "voice"] }
|
|
songbird = { version = "0.3.0", features = [ "builtin-queue" ] }
|
|
thiserror = "1.0.38"
|
|
tokio = { version = "1.25.0", features = ["rt-multi-thread", "macros", "signal"] }
|
|
tower-http = { version = "0.4.0", features = ["cors"] }
|
|
tracing = "0.1.37"
|
|
tracing-subscriber = "0.3.16"
|
|
uuid = { version = "1.3.0", features = ["v4"] }
|