[package]
edition = "2021"
name = "alopex-server"
version = "0.7.6"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Server component for Alopex DB"
readme = "README.md"
keywords = [
"database",
"server",
]
categories = ["database-implementations"]
license = "Apache-2.0"
repository = "https://github.com/alopex-db/alopex"
[features]
lane_ci = []
[lib]
name = "alopex_server"
path = "src/lib.rs"
[[bin]]
name = "alopex-server"
path = "src/main.rs"
[[test]]
name = "api_e2e"
path = "tests/api_e2e.rs"
[[test]]
name = "async_sql_integration"
path = "tests/async_sql_integration.rs"
[[test]]
name = "backpressure_overflow"
path = "tests/backpressure_overflow.rs"
[[test]]
name = "backup_restore_foundation"
path = "tests/backup_restore_foundation.rs"
[[test]]
name = "binary_e2e"
path = "tests/binary_e2e.rs"
[[test]]
name = "cross_surface_consistency"
path = "tests/cross_surface_consistency.rs"
[[test]]
name = "grpc_test"
path = "tests/grpc_test.rs"
[[test]]
name = "http_sql_e2e"
path = "tests/http_sql_e2e.rs"
[[test]]
name = "http_test"
path = "tests/http_test.rs"
[[test]]
name = "load_test"
path = "tests/load_test.rs"
[[test]]
name = "ops_integration_test"
path = "tests/ops_integration_test.rs"
[[test]]
name = "tls_config_test"
path = "tests/tls_config_test.rs"
[[test]]
name = "v07_compatibility"
path = "tests/v07_compatibility.rs"
[dependencies.alopex-cluster]
version = "0.7.6"
[dependencies.alopex-core]
version = "0.7.6"
features = [
"compression-zstd",
"async",
"tokio",
]
[dependencies.alopex-sql]
version = "0.7.6"
features = ["tokio"]
[dependencies.anyhow]
version = "1.0"
[dependencies.axum]
version = "0.8"
[dependencies.axum-server]
version = "0.8"
features = ["tls-rustls-no-provider"]
[dependencies.bincode]
version = "1.3"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.config]
version = "0.14"
[dependencies.crc32fast]
version = "1.3"
[dependencies.dashmap]
version = "5.5"
[dependencies.futures]
version = "0.3"
[dependencies.humantime-serde]
version = "1.1"
[dependencies.prometheus]
version = "0.14"
[dependencies.prost]
version = "0.14"
[dependencies.prost-types]
version = "0.14"
[dependencies.rustls]
version = "0.23"
features = [
"ring",
"std",
"tls12",
]
default-features = false
[dependencies.rustls-pemfile]
version = "2.2"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1.35"
features = ["full"]
[dependencies.tokio-rustls]
version = "0.26"
features = ["ring"]
default-features = false
[dependencies.tokio-stream]
version = "0.1"
features = ["net"]
[dependencies.tonic]
version = "0.14"
[dependencies.tonic-prost]
version = "0.14"
[dependencies.tower]
version = "0.5"
features = ["util"]
[dependencies.tower-http]
version = "0.6"
features = [
"trace",
"limit",
"request-id",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.uuid]
version = "1.19"
features = [
"v4",
"v7",
"serde",
]
[dev-dependencies.futures-core]
version = "0.3"
[dev-dependencies.http-body-util]
version = "0.1"
[dev-dependencies.hyper]
version = "1"
[dev-dependencies.hyper-util]
version = "0.1"
features = [
"client",
"client-legacy",
"http1",
"tokio",
]
[dev-dependencies.rcgen]
version = "0.12"
[dev-dependencies.tempfile]
version = "3.10"
[dev-dependencies.tokio]
version = "1.35"
features = [
"full",
"macros",
"rt-multi-thread",
"time",
]
[build-dependencies.protoc-bin-vendored]
version = "3.2.0"
[build-dependencies.tonic-prost-build]
version = "0.14"