[package]
edition = "2024"
name = "etcds"
version = "0.16.0"
authors = ["Vladimir Krinitsyn <v.krinitsyn@gmail.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An etcd v3 API server - light server version for queue management"
homepage = "https://github.com/vkrinitsyn/etcd"
readme = "README.md"
keywords = [
"etcd",
"v3",
"api",
"server",
"async",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/vkrinitsyn/etcd.git"
[package.metadata.docs.rs]
features = [
"tls",
"tls-roots",
]
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = []
tracer = [
"dep:opentelemetry",
"dep:opentelemetry_sdk",
]
[lib]
name = "etcds"
path = "src/lib.rs"
[[bin]]
name = "etcds"
path = "src/main.rs"
[[test]]
name = "client"
path = "tests/client.rs"
[[test]]
name = "namespace"
path = "tests/namespace.rs"
[[test]]
name = "queue"
path = "tests/queue.rs"
[[test]]
name = "testing"
path = "tests/testing.rs"
[dependencies.clap]
version = "^4.5"
[dependencies.clap-serde-derive]
version = "0.2.1"
[dependencies.dns-lookup]
version = "^3.0"
[dependencies.opentelemetry]
version = "^0.32"
optional = true
[dependencies.opentelemetry_sdk]
version = "^0.32"
features = [
"rt-tokio",
"trace",
]
optional = true
[dependencies.prost]
version = "^0.14"
[dependencies.rust-i18n]
version = "4"
[dependencies.serde]
version = "^1.0"
features = ["derive"]
[dependencies.serde_yaml]
version = "^0.9"
[dependencies.shims]
version = "^0.1"
[dependencies.slog]
version = "^2.0"
features = ["default"]
[dependencies.sloggers]
version = "^2.2"
[dependencies.tokio]
version = "^1.44"
features = ["full"]
[dependencies.tokio-stream]
version = "^0.1"
[dependencies.tonic]
version = "^0.14"
[dependencies.tonic-prost]
version = "^0.14"
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.etcd-client]
version = "^0.19"
features = []
[dev-dependencies.slog]
version = "^2.8"
features = ["default"]
[dev-dependencies.tokio]
version = "^1.44"
features = ["full"]
[build-dependencies.tonic-prost-build]
version = "^0.14"