diff options
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", +] |
