# 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 = "2021" name = "simple_redis" version = "0.6.4" authors = ["Sagie Gur-Ari "] build = false include = [ "/benches/*", "/docs/*", "/examples/*", "/src/*", "/tests/*", "/Cargo.toml", "/LICENSE", "/README.md", "/Makefile.toml", ] autobins = false autoexamples = false autotests = false autobenches = false description = "Simple and resilient redis client." homepage = "http://github.com/sagiegurari/simple_redis" documentation = "https://sagiegurari.github.io/simple_redis/api/simple_redis/index.html" readme = "README.md" keywords = [ "redis", "cache", "pubsub", "database", ] categories = [ "caching", "database", ] license = "Apache-2.0" repository = "https://github.com/sagiegurari/simple_redis.git" [lib] name = "simple_redis" path = "src/lib.rs" [[example]] name = "open_close_connection" path = "examples/open_close_connection.rs" [[example]] name = "pubsub" path = "examples/pubsub.rs" [[example]] name = "subscription_flow" path = "examples/subscription_flow.rs" [[example]] name = "set_get" path = "examples/set_get.rs" [[example]] name = "init_and_simple_operations" path = "examples/init_and_simple_operations.rs" [[test]] name = "commands_test" path = "tests/commands_test.rs" [[test]] name = "client_test" path = "tests/client_test.rs" [[test]] name = "pubsub_test" path = "tests/pubsub_test.rs" [[bench]] name = "bench_commands" path = "benches/bench_commands.rs" [dependencies.redis] version = "^0.26" default-features = false [dev-dependencies.doc-comment] version = "^0.3"