[[bin]]
name = "voltdb-client-rust"
path = "src/main.rs"
[dependencies.bigdecimal]
version = "0.4.0"
[dependencies.bytebuffer]
version = "2.3.0"
[dependencies.byteorder]
version = "1.5"
[dependencies.bytes]
optional = true
version = "1.5"
[dependencies.chrono]
version = "0.4"
[dependencies.dashmap]
optional = true
version = "6.0"
[dependencies.futures]
version = "0.3.31"
[dependencies.quick-error]
version = "2.0.1"
[dependencies.sha2]
version = "0.10"
[dependencies.tokio]
features = ["net", "io-util", "sync", "rt", "time", "macros"]
optional = true
version = "1.35"
[dev-dependencies.lazy_static]
version = "1.4.0"
[dev-dependencies.testcontainers]
features = ["blocking"]
version = "0.23"
[dev-dependencies.tokio]
features = ["full"]
version = "1.35"
[features]
default = ["tokio"]
tokio = ["dep:tokio", "dep:dashmap", "dep:bytes"]
[lib]
name = "voltdb_client_rust"
path = "src/lib.rs"
[package]
authors = ["johnnywale <johnnywalee@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["database"]
description = "A socket client library for VoltDB server supporting both sync and async operations."
edition = "2024"
keywords = ["voltdb", "asynchronous", "database-client"]
license = "MIT"
name = "voltdb-client-rust"
readme = "README.md"
repository = "https://github.com/johnnywale/voltdb-client-rust"
version = "0.1.13"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[[test]]
name = "async_integration_test"
path = "tests/async_integration_test.rs"
[[test]]
name = "async_test"
path = "tests/async_test.rs"
[[test]]
name = "doc"
path = "tests/doc.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "pool_test"
path = "tests/pool_test.rs"
[[test]]
name = "unit_test"
path = "tests/unit_test.rs"