mirror of
https://github.com/modrinth/code.git
synced 2026-07-31 13:16:38 +00:00
* chore(labrinth): bump to redis 1.4.1 * feat(labrinth): redis cluster * chore: cleanup * feat(labrinth): cache locking * fix(labrinth): clippy * chore(labrinth): cleanup env, remove postcard support * chore(ci): fix test env for labrinth * chore(labrinth): bump all key versions * chore(labrinth): improve redis key identities handling * chore(labrinth): simplify deadline handling * chore(labrinth): remove unused lease tracking * chore(labrinth): remove distributed cache locking for now * chore(labrinth): improve redis backend init error * feat(labrinth): expose redis read replica strategy * chore(ci): remove other connection mode tests * chore: split xredis crate * feat(xredis): primaries routing * chore: tombi fmt * chore: clippy * chore: update query cache
33 lines
765 B
TOML
33 lines
765 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"] }
|
|
futures = { workspace = true }
|
|
lz4_flex = { workspace = true }
|
|
prometheus = { workspace = true }
|
|
redis = { workspace = true, features = [
|
|
"ahash",
|
|
"cluster",
|
|
"cluster-async",
|
|
"tokio-comp"
|
|
] }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true, features = ["rt", "sync", "time"] }
|
|
tracing = { workspace = true }
|
|
|
|
[features]
|
|
test = []
|
|
|
|
[lints]
|
|
workspace = true
|