39 lines
1.2 KiB
TOML
39 lines
1.2 KiB
TOML
[package]
|
|
name = "discord-bot"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5.36", features = ["derive", "env"] }
|
|
indexmap = "2.9.0"
|
|
itertools = "0.14.0"
|
|
opendal = { version = "0.53.0", features = ["services-fs"] }
|
|
postcard = { version = "1.1.1", features = ["use-std"] }
|
|
rand = "0.9.0"
|
|
secrecy = { version = "0.10.3", features = ["serde"] }
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
snafu = "0.8.5"
|
|
tokio = { version = "1.44.2", features = [
|
|
"macros",
|
|
"rt-multi-thread",
|
|
"sync",
|
|
"time",
|
|
] }
|
|
tracing = "0.1.41"
|
|
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
|
|
twilight-cache-inmemory = "0.16.0"
|
|
twilight-gateway = { version = "0.16.0", default-features = false, features = [
|
|
"rustls-aws_lc_rs",
|
|
"rustls-webpki-roots",
|
|
] }
|
|
twilight-http = { version = "0.16.0", default-features = false, features = [
|
|
"decompression",
|
|
"hickory",
|
|
"rustls-aws_lc_rs",
|
|
"rustls-webpki-roots",
|
|
] }
|
|
twilight-model = "0.16.0"
|
|
twilight-util = { version = "0.16.0", features = ["builder"] }
|
|
ulid = { version = "1.2.1", features = ["serde", "uuid"] }
|
|
uuid = { version = "1.16.0", features = ["v7", "serde"] }
|