mirror of
https://github.com/modrinth/code.git
synced 2026-08-24 16:44:51 +00:00
* redo error handling in xredis * give proper types to metadata fields * add round-trip tests * inline loader enum metadata fields * postcard roundtrips * prepare * bump redis key version * serde-binhum * clippy * fix * fix frontend checking existence of component fields rather than non-null-ness * prepare
34 lines
791 B
TOML
34 lines
791 B
TOML
[package]
|
|
name = "xredis"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
repository.workspace = true
|
|
|
|
[dependencies]
|
|
ariadne = { workspace = true }
|
|
chrono = { workspace = true }
|
|
dashmap = { workspace = true }
|
|
deadpool-redis = { workspace = true, features = ["cluster-async"] }
|
|
eyre = { workspace = true }
|
|
futures = { workspace = true }
|
|
lz4_flex = { workspace = true }
|
|
postcard = { workspace = true }
|
|
prometheus = { workspace = true }
|
|
redis = { workspace = true, features = [
|
|
"ahash",
|
|
"cluster",
|
|
"cluster-async",
|
|
"tokio-comp"
|
|
] }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true, features = ["rt", "sync", "time"] }
|
|
tracing = { workspace = true }
|
|
|
|
[features]
|
|
test = []
|
|
|
|
[lints]
|
|
workspace = true
|