22 lines
621 B
TOML
22 lines
621 B
TOML
[package]
|
|
name = "master"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
async-nats = { version = "0.46.0" }
|
|
futures = { version = "0.3.32" }
|
|
nats-libs = { path = "../../libs/nats-libs" }
|
|
postcard = { version = "1.1.3", features = ["use-std"] }
|
|
serenity = { version = "0.12.5", default-features = false, features = [
|
|
"cache",
|
|
"client",
|
|
"collector",
|
|
"gateway",
|
|
"rustls_backend",
|
|
] }
|
|
serenity-libs = { path = "../../libs/serenity-libs" }
|
|
tokio = { version = "1.50.0", features = ["macros", "rt-multi-thread"] }
|
|
types = { path = "../../libs/types" }
|
|
url = { version = "2.5.8", features = ["serde"] }
|