redis-server-wrapper 0.2.0

Type-safe wrapper for redis-server and redis-cli with builder pattern APIs
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.87"
name = "redis-server-wrapper"
version = "0.2.0"
authors = ["Josh Rotenberg <joshrotenberg@gmail.com>"]
build = false
exclude = [
    ".github/",
    "tests/",
    "examples/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Type-safe wrapper for redis-server and redis-cli with builder pattern APIs"
homepage = "https://github.com/joshrotenberg/redis-server-wrapper"
documentation = "https://docs.rs/redis-server-wrapper"
readme = "README.md"
keywords = [
    "redis",
    "testing",
    "wrapper",
    "server",
]
categories = [
    "development-tools::testing",
    "database",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/joshrotenberg/redis-server-wrapper"

[features]
blocking = ["tokio"]
default = ["tokio"]
tokio = ["dep:tokio"]

[lib]
name = "redis_server_wrapper"
path = "src/lib.rs"

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = [
    "process",
    "time",
    "rt",
    "macros",
    "rt-multi-thread",
]
optional = true

[dependencies.which]
version = "7"

[dev-dependencies.clap]
version = "4"
features = ["derive"]

[dev-dependencies.ctrlc]
version = "3"