[package]
edition = "2018"
name = "async-memcached"
version = "0.6.0"
authors = ["Toby Lawrence <toby@nuclearfurnace.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An Tokio-based memcached client for Rust."
homepage = "https://github.com/Shopify/async-memcached"
documentation = "https://docs.rs/async-memcached"
readme = "README.md"
keywords = [
"memcached",
"async",
]
license = "MIT"
repository = "https://github.com/Shopify/async-memcached"
[features]
default = []
polonius = []
tcp = []
udp = []
[lib]
name = "async_memcached"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/tcp.rs"
[[example]]
name = "unix"
path = "examples/unix.rs"
[[test]]
name = "ascii_proto_integration_tests"
path = "tests/ascii_proto_integration_tests.rs"
[[test]]
name = "meta_proto_integration_tests"
path = "tests/meta_proto_integration_tests.rs"
[[test]]
name = "resiliency_tests"
path = "tests/resiliency_tests.rs"
[[bench]]
name = "bench"
path = "benches/bench.rs"
harness = false
[[bench]]
name = "request_distribution_bench"
path = "benches/request_distribution_bench.rs"
harness = false
[dependencies.async-stream]
version = "0.3"
[dependencies.btoi]
version = "0.5"
[dependencies.bytes]
version = "1.10"
[dependencies.dsn]
version = "1.0"
[dependencies.futures]
version = "0.3"
[dependencies.fxhash]
version = "0.2"
[dependencies.nom]
version = "8.0"
[dependencies.pin-project]
version = "1.0"
[dependencies.tokio]
version = "1.26"
features = ["io-util"]
default-features = false
[dependencies.toxiproxy_rust]
version = "0.1"
[dependencies.url]
version = "2.5"
[dev-dependencies.criterion]
version = "0.8"
features = ["async_tokio"]
[dev-dependencies.lazy_static]
version = "1.4"
[dev-dependencies.rand]
version = "0.9"
[dev-dependencies.serial_test]
version = "3.1"
[dev-dependencies.tokio]
version = "1.26"
features = ["full"]