[package]
edition = "2021"
name = "liboxia"
version = "0.0.2"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Liboxia is a Rust library designed for both native Rust applications and for integration with other languages via its C Foreign Function Interface (FFI). It serves as a client SDK for Oxia, a distributed key-value store, enabling robust, asynchronous data operations."
homepage = "https://github.com/oxia-db/liboxia"
readme = false
license = "Apache-2.0"
repository = "https://github.com/oxia-db/liboxia"
[lib]
name = "liboxia"
path = "src/lib.rs"
[[example]]
name = "basic_complex_query"
path = "examples/basic_complex_query.rs"
[[example]]
name = "basic_kv"
path = "examples/basic_kv.rs"
[[example]]
name = "basic_secondary"
path = "examples/basic_secondary.rs"
[[example]]
name = "basic_versioning"
path = "examples/basic_versioning.rs"
[[example]]
name = "metadata_ephemeral"
path = "examples/metadata_ephemeral.rs"
[[example]]
name = "metadata_notification"
path = "examples/metadata_notification.rs"
[[example]]
name = "streaming_sequence"
path = "examples/streaming_sequence.rs"
[dependencies.backoff]
version = "0.4.0"
features = ["tokio"]
[dependencies.dashmap]
version = "6.1.0"
[dependencies.futures]
version = "0.3"
[dependencies.log]
version = "0.4"
[dependencies.prost]
version = "0.13"
[dependencies.thiserror]
version = "2.0.12"
[dependencies.tokio]
version = "1.47.0"
features = [
"rt-multi-thread",
"macros",
]
[dependencies.tokio-util]
version = "0.7"
[dependencies.tonic]
version = "0.13"
[dependencies.uuid]
version = "1.7"
features = ["v4"]
[dependencies.xxhash-rust]
version = "0.8.5"
features = [
"xxh32",
"const_xxh32",
]
[dev-dependencies.tracing]
version = "0.1"
[dev-dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[build-dependencies.tonic-build]
version = "0.13.1"