quiverdb-server 0.29.0

The Quiver daemon: gRPC + REST with auth, RBAC, audit, and metrics.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.88"
name = "quiverdb-server"
version = "0.29.0"
authors = ["Achref Soua <achref.soua@outlook.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The Quiver daemon: gRPC + REST with auth, RBAC, audit, and metrics."
homepage = "https://github.com/achref-soua/quiver"
readme = false
keywords = [
    "vector-database",
    "embeddings",
    "search",
    "ann",
    "hnsw",
]
categories = [
    "database",
    "data-structures",
]
license = "AGPL-3.0-only"
repository = "https://github.com/achref-soua/quiver"

[features]
otlp = [
    "dep:opentelemetry",
    "dep:opentelemetry_sdk",
    "dep:opentelemetry-otlp",
    "dep:tracing-opentelemetry",
]
raft = [
    "dep:openraft",
    "dep:postcard",
]

[lib]
name = "quiver_server"
path = "src/lib.rs"

[[test]]
name = "audit"
path = "tests/audit.rs"

[[test]]
name = "autoscale"
path = "tests/autoscale.rs"

[[test]]
name = "client_side_encryption"
path = "tests/client_side_encryption.rs"

[[test]]
name = "client_side_vectors"
path = "tests/client_side_vectors.rs"

[[test]]
name = "cluster"
path = "tests/cluster.rs"

[[test]]
name = "cluster_coordinator"
path = "tests/cluster_coordinator.rs"

[[test]]
name = "cluster_coordinator_auth"
path = "tests/cluster_coordinator_auth.rs"

[[test]]
name = "cluster_migration"
path = "tests/cluster_migration.rs"

[[test]]
name = "cluster_replicas"
path = "tests/cluster_replicas.rs"

[[test]]
name = "cost_limits"
path = "tests/cost_limits.rs"

[[test]]
name = "dcpe"
path = "tests/dcpe.rs"

[[test]]
name = "embedding"
path = "tests/embedding.rs"

[[test]]
name = "error_paths"
path = "tests/error_paths.rs"

[[test]]
name = "hybrid"
path = "tests/hybrid.rs"

[[test]]
name = "metrics"
path = "tests/metrics.rs"

[[test]]
name = "multivector"
path = "tests/multivector.rs"

[[test]]
name = "mvcc"
path = "tests/mvcc.rs"

[[test]]
name = "openapi"
path = "tests/openapi.rs"

[[test]]
name = "raft_cluster"
path = "tests/raft_cluster.rs"

[[test]]
name = "raft_gate"
path = "tests/raft_gate.rs"

[[test]]
name = "raft_membership"
path = "tests/raft_membership.rs"

[[test]]
name = "raft_router"
path = "tests/raft_router.rs"

[[test]]
name = "rate_limit"
path = "tests/rate_limit.rs"

[[test]]
name = "rbac"
path = "tests/rbac.rs"

[[test]]
name = "replication"
path = "tests/replication.rs"

[[test]]
name = "round_trip"
path = "tests/round_trip.rs"

[[test]]
name = "security_headers"
path = "tests/security_headers.rs"

[[test]]
name = "snapshot"
path = "tests/snapshot.rs"

[[test]]
name = "tls"
path = "tests/tls.rs"

[[test]]
name = "upsert_stream"
path = "tests/upsert_stream.rs"

[dependencies.arc-swap]
version = "1.7"

[dependencies.axum]
version = "0.8"

[dependencies.axum-server]
version = "0.8"
features = ["tls-rustls-no-provider"]
default-features = false

[dependencies.figment]
version = "0.10"
features = [
    "env",
    "toml",
]

[dependencies.openraft]
version = "0.9.24"
features = [
    "serde",
    "storage-v2",
]
optional = true

[dependencies.opentelemetry]
version = "0.32"
optional = true

[dependencies.opentelemetry-otlp]
version = "0.32"
features = [
    "grpc-tonic",
    "trace",
]
optional = true
default-features = false

[dependencies.opentelemetry_sdk]
version = "0.32"
optional = true

[dependencies.postcard]
version = "1.1"
features = ["use-std"]
optional = true
default-features = false

[dependencies.quiver-cluster]
version = "0.29"
package = "quiverdb-cluster"

[dependencies.quiver-core]
version = "0.29"
package = "quiverdb-core"

[dependencies.quiver-crypto]
version = "0.29"
package = "quiverdb-crypto"

[dependencies.quiver-embed]
version = "0.29"
package = "quiverdb-embed"

[dependencies.quiver-proto]
version = "0.29"
package = "quiverdb-proto"

[dependencies.quiver-providers]
version = "0.29"
package = "quiverdb-providers"

[dependencies.quiver-query]
version = "0.29"
package = "quiverdb-query"

[dependencies.reqwest]
version = "0.13"
features = ["json"]
default-features = false

[dependencies.rustls]
version = "0.23"
features = [
    "ring",
    "std",
    "tls12",
    "logging",
]
default-features = false

[dependencies.rustls-pki-types]
version = "1"
features = ["std"]

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.sha2]
version = "0.10"

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "macros",
    "net",
    "signal",
]

[dependencies.tokio-stream]
version = "0.1"
features = ["net"]

[dependencies.tonic]
version = "0.14"
features = ["tls-ring"]

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-opentelemetry]
version = "0.33"
optional = true

[dependencies.tracing-subscriber]
version = "0.3"
features = [
    "env-filter",
    "fmt",
]

[dev-dependencies.rcgen]
version = "0.14"

[dev-dependencies.reqwest]
version = "0.13"
features = ["json"]
default-features = false

[dev-dependencies.tempfile]
version = "3"

[dev-dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "macros",
    "net",
    "signal",
    "rt-multi-thread",
    "macros",
    "net",
    "time",
]

[dev-dependencies.tokio-rustls]
version = "0.26"
features = [
    "ring",
    "tls12",
    "logging",
]
default-features = false

[dev-dependencies.tokio-stream]
version = "0.1"
features = ["net"]

[lints.clippy]
dbg_macro = "deny"
expect_used = "deny"
todo = "warn"
unwrap_used = "deny"

[lints.rust]
missing_docs = "warn"
unsafe_op_in_unsafe_fn = "deny"