[package]
edition = "2024"
name = "preview-glide-rust"
version = "0.2.0"
authors = ["Valkey GLIDE Maintainers"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Valkey GLIDE — native Rust client for Valkey and Redis OSS, built on glide-core."
readme = "README.md"
keywords = [
"valkey",
"redis",
"glide",
"client",
"database",
]
categories = [
"database",
"asynchronous",
]
license = "Apache-2.0"
repository = "https://github.com/omerrubi-amzn/glide-rust"
[features]
default = ["sync"]
sync = []
[lib]
name = "glide"
path = "src/lib.rs"
[[example]]
name = "ec_bench"
path = "examples/ec_bench.rs"
[[test]]
name = "it_auth"
path = "tests/it_auth.rs"
[[test]]
name = "it_bitmap"
path = "tests/it_bitmap.rs"
[[test]]
name = "it_client"
path = "tests/it_client.rs"
[[test]]
name = "it_cluster"
path = "tests/it_cluster.rs"
[[test]]
name = "it_cluster_features"
path = "tests/it_cluster_features.rs"
[[test]]
name = "it_commands_core"
path = "tests/it_commands_core.rs"
[[test]]
name = "it_commands_extra"
path = "tests/it_commands_extra.rs"
[[test]]
name = "it_compression"
path = "tests/it_compression.rs"
[[test]]
name = "it_connection"
path = "tests/it_connection.rs"
[[test]]
name = "it_generic"
path = "tests/it_generic.rs"
[[test]]
name = "it_geo"
path = "tests/it_geo.rs"
[[test]]
name = "it_hash"
path = "tests/it_hash.rs"
[[test]]
name = "it_hyperloglog"
path = "tests/it_hyperloglog.rs"
[[test]]
name = "it_lazy"
path = "tests/it_lazy.rs"
[[test]]
name = "it_list"
path = "tests/it_list.rs"
[[test]]
name = "it_parity_guard"
path = "tests/it_parity_guard.rs"
[[test]]
name = "it_password"
path = "tests/it_password.rs"
[[test]]
name = "it_pipeline"
path = "tests/it_pipeline.rs"
[[test]]
name = "it_pubsub"
path = "tests/it_pubsub.rs"
[[test]]
name = "it_read_from"
path = "tests/it_read_from.rs"
[[test]]
name = "it_restored_extensions"
path = "tests/it_restored_extensions.rs"
[[test]]
name = "it_scan"
path = "tests/it_scan.rs"
[[test]]
name = "it_scripting"
path = "tests/it_scripting.rs"
[[test]]
name = "it_server"
path = "tests/it_server.rs"
[[test]]
name = "it_set"
path = "tests/it_set.rs"
[[test]]
name = "it_sorted_set"
path = "tests/it_sorted_set.rs"
[[test]]
name = "it_stream"
path = "tests/it_stream.rs"
[[test]]
name = "it_string"
path = "tests/it_string.rs"
[[test]]
name = "it_sync"
path = "tests/it_sync.rs"
[[test]]
name = "it_telemetry"
path = "tests/it_telemetry.rs"
[[test]]
name = "it_tls"
path = "tests/it_tls.rs"
[[test]]
name = "mock_commands"
path = "tests/mock_commands/main.rs"
[[bench]]
name = "throughput"
path = "benches/throughput.rs"
harness = false
[dependencies.async-trait]
version = "0.1"
[dependencies.bytes]
version = "1"
[dependencies.futures]
version = "0.3"
[dependencies.glide-core]
version = "=0.1.1"
package = "experimental-glide-core-lib"
[dependencies.redis]
version = "=0.25.2"
features = [
"aio",
"tokio-comp",
"cluster",
"cluster-async",
]
package = "experimental-glide-core-rs-dependency"
[dependencies.sha1_smol]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt",
"rt-multi-thread",
"sync",
"macros",
"time",
]
[dev-dependencies.criterion]
version = "0.5"
features = ["async_tokio"]
[dev-dependencies.once_cell]
version = "1"
[dev-dependencies.regex]
version = "1"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tokio]
version = "1"
features = ["full"]
[lints.clippy]
await_holding_lock = "deny"
mutex_atomic = "warn"