chore: add many useful crates as dependencies

This commit is contained in:
2025-04-12 12:49:46 -04:00
parent 52bbcbdb52
commit 492fe68c09
2 changed files with 3013 additions and 0 deletions

2982
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -4,3 +4,34 @@ version = "0.1.0"
edition = "2024"
[dependencies]
clap = { version = "4.5.36", features = ["derive", "env"] }
dashmap = { version = "6.1.0", features = ["rayon", "serde"] }
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"] }
sharded-slab = "0.1.7"
slab = "0.4.9"
snafu = "0.8.5"
tokio = { version = "1.44.2", features = [
"macros",
"rt-multi-thread",
"sync",
"time",
] }
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
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"] }