diff options
| author | rtkay123 <dev@kanjala.com> | 2026-04-05 15:17:55 +0200 |
|---|---|---|
| committer | rtkay123 <dev@kanjala.com> | 2026-04-05 15:17:55 +0200 |
| commit | 3f708c5fffed105b27965f8e844a26de6bdf9662 (patch) | |
| tree | fbed157ae7fc15a26a86fba5e0b8b9c5107ee07f /crates/sh-util/Cargo.toml | |
| parent | e86366c6d68b9d3d2af4ac4afb5cf7d5a8400dde (diff) | |
| download | sellershut-3f708c5fffed105b27965f8e844a26de6bdf9662.tar.bz2 sellershut-3f708c5fffed105b27965f8e844a26de6bdf9662.zip | |
feat(cli): cache
Diffstat (limited to 'crates/sh-util/Cargo.toml')
| -rw-r--r-- | crates/sh-util/Cargo.toml | 26 |
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", +] |
