aboutsummaryrefslogtreecommitdiffstats
path: root/crates/sh-util/Cargo.toml
diff options
context:
space:
mode:
authorrtkay123 <dev@kanjala.com>2026-04-05 15:17:55 +0200
committerrtkay123 <dev@kanjala.com>2026-04-05 15:17:55 +0200
commit3f708c5fffed105b27965f8e844a26de6bdf9662 (patch)
treefbed157ae7fc15a26a86fba5e0b8b9c5107ee07f /crates/sh-util/Cargo.toml
parente86366c6d68b9d3d2af4ac4afb5cf7d5a8400dde (diff)
downloadsellershut-3f708c5fffed105b27965f8e844a26de6bdf9662.tar.bz2
sellershut-3f708c5fffed105b27965f8e844a26de6bdf9662.zip
feat(cli): cache
Diffstat (limited to 'crates/sh-util/Cargo.toml')
-rw-r--r--crates/sh-util/Cargo.toml26
1 files changed, 26 insertions, 0 deletions
diff --git a/crates/sh-util/Cargo.toml b/crates/sh-util/Cargo.toml
new file mode 100644
index 0000000..12bf7a4
--- /dev/null
+++ b/crates/sh-util/Cargo.toml
@@ -0,0 +1,26 @@
+[package]
+name = "sh-util"
+version = "0.0.0"
+edition = "2024"
+license.workspace = true
+readme.workspace = true
+documentation.workspace = true
+homepage.workspace = true
+
+[dependencies]
+bb8 = { version = "0.9.1", optional = true }
+futures-util = { workspace = true, optional = true }
+redis = { workspace = true, optional = true }
+serde = { workspace = true, features = ["derive"] }
+
+[features]
+cache = [
+ "dep:redis",
+ "redis/cluster-async",
+ "redis/connection-manager",
+ "redis/tokio-comp",
+ "redis/sentinel",
+ "redis/bb8",
+ "dep:bb8",
+ "dep:futures-util",
+]