[package]
edition = "2021"
rust-version = "1.88"
name = "hydracache-server"
version = "0.70.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Standalone production server daemon for HydraCache."
homepage = "https://github.com/javaquasar/hydracache"
readme = "README.md"
keywords = [
"cache",
"caching",
"async",
"runtime",
]
categories = [
"caching",
"asynchronous",
]
license = "Apache-2.0"
repository = "https://github.com/javaquasar/hydracache"
[lib]
name = "hydracache_server"
path = "src/lib.rs"
[[bin]]
name = "hydracache-server"
path = "src/main.rs"
[[test]]
name = "actuator_mount"
path = "tests/actuator_mount.rs"
[[test]]
name = "admin_http"
path = "tests/admin_http.rs"
[[test]]
name = "backup_authority_boundary"
path = "tests/backup_authority_boundary.rs"
[[test]]
name = "client_surface_lifecycle"
path = "tests/client_surface_lifecycle.rs"
[[test]]
name = "cluster_overview"
path = "tests/cluster_overview.rs"
[[test]]
name = "cluster_status"
path = "tests/cluster_status.rs"
[[test]]
name = "config_properties"
path = "tests/config_properties.rs"
[[test]]
name = "daemon_process_cluster"
path = "tests/daemon_process_cluster.rs"
[[test]]
name = "daemon_resource_budget"
path = "tests/daemon_resource_budget.rs"
[[test]]
name = "deploy_smoke"
path = "tests/deploy_smoke.rs"
[[test]]
name = "differential_model_process"
path = "tests/differential_model_process.rs"
[[test]]
name = "external_control_plane_history"
path = "tests/external_control_plane_history.rs"
[[test]]
name = "graceful_upgrade"
path = "tests/graceful_upgrade.rs"
[[test]]
name = "grid_host"
path = "tests/grid_host.rs"
[[test]]
name = "hc2_daemon_process"
path = "tests/hc2_daemon_process.rs"
[[test]]
name = "id_mapping_properties"
path = "tests/id_mapping_properties.rs"
[[test]]
name = "lock_endpoint"
path = "tests/lock_endpoint.rs"
[[test]]
name = "membership_history"
path = "tests/membership_history.rs"
[[test]]
name = "process_control_plane_nemesis"
path = "tests/process_control_plane_nemesis.rs"
[[test]]
name = "raft_wire_socket_corpus"
path = "tests/raft_wire_socket_corpus.rs"
[[test]]
name = "redis_resp_multinode"
path = "tests/redis_resp_multinode.rs"
[[test]]
name = "rejoin_after_compaction_process"
path = "tests/rejoin_after_compaction_process.rs"
[[test]]
name = "rolling_upgrade_process"
path = "tests/rolling_upgrade_process.rs"
[[test]]
name = "scheduler_tick_process"
path = "tests/scheduler_tick_process.rs"
[[test]]
name = "server_lifecycle"
path = "tests/server_lifecycle.rs"
[[test]]
name = "snapshot_resource_budget"
path = "tests/snapshot_resource_budget.rs"
[[test]]
name = "soak_resource"
path = "tests/soak_resource.rs"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.axum]
version = "0.8"
[dependencies.axum-server]
version = "0.8.0"
features = ["tls-rustls"]
default-features = false
[dependencies.bytes]
version = "1.11.1"
[dependencies.futures-util]
version = "0.3.32"
[dependencies.hydracache]
version = "0.70.0"
[dependencies.hydracache-actuator-axum]
version = "0.70.0"
[dependencies.hydracache-client-hc2]
version = "0.70.0"
[dependencies.hydracache-client-protocol]
version = "0.70.0"
[dependencies.hydracache-client-transport-axum]
version = "0.70.0"
[dependencies.hydracache-cluster-chitchat]
version = "0.70.0"
[dependencies.hydracache-cluster-raft]
version = "0.70.0"
features = ["sled-log-store"]
[dependencies.hydracache-cluster-transport-axum]
version = "0.70.0"
[dependencies.hydracache-observability]
version = "0.70.0"
[dependencies.hydracache-redis-compat]
version = "0.70.0"
[dependencies.reqwest]
version = "0.13"
features = [
"json",
"rustls",
]
default-features = false
[dependencies.rustls]
version = "0.23.41"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.11"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1.52.3"
features = [
"io-util",
"macros",
"net",
"rt-multi-thread",
"sync",
"time",
"signal",
]
[dependencies.tokio-rustls]
version = "0.26.4"
[dependencies.tokio-stream]
version = "0.1"
features = ["net"]
[dependencies.toml]
version = "1"
[dependencies.tonic]
version = "0.14.6"
features = ["tls-ring"]
[dev-dependencies.fs2]
version = "0.4.3"
[dev-dependencies.hydracache-client-protocol]
version = "0.70.0"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.raft]
version = "0.7.0"
features = ["protobuf-codec"]
default-features = false
[dev-dependencies.rcgen]
version = "0.14.8"
[dev-dependencies.redis]
version = "1.3.0"
features = [
"tokio-comp",
"bytes",
]
default-features = false
[dev-dependencies.tokio]
version = "1.52.3"
features = [
"io-util",
"macros",
"net",
"rt-multi-thread",
"sync",
"time",
"test-util",
]
[dev-dependencies.tower]
version = "0.5"
features = ["util"]
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
"cfg(coverage)",
"cfg(fuzzing)",
"cfg(hydracache_loom)",
]