Includes all pending changes needed for nixos-anywhere: - fiberlb: L7 policy, rule, certificate types - deployer: New service for cluster management - nix-nos: Generic network modules - Various service updates and fixes 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
49 lines
1.2 KiB
TOML
49 lines
1.2 KiB
TOML
[package]
|
|
name = "flaredb-server"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
flaredb-types = { path = "../flaredb-types" }
|
|
flaredb-proto = { path = "../flaredb-proto" }
|
|
flaredb-storage = { path = "../flaredb-storage" }
|
|
flaredb-raft = { path = "../flaredb-raft" }
|
|
flaredb-sql = { path = "../flaredb-sql" }
|
|
flaredb-client = { path = "../flaredb-client" }
|
|
tokio.workspace = true
|
|
tonic.workspace = true
|
|
tonic-health.workspace = true
|
|
prost.workspace = true
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
openraft = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
clap.workspace = true
|
|
toml.workspace = true
|
|
config.workspace = true
|
|
async-trait.workspace = true
|
|
tracing.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
metrics.workspace = true
|
|
metrics-exporter-prometheus.workspace = true
|
|
rocksdb.workspace = true
|
|
futures.workspace = true
|
|
sha2.workspace = true
|
|
tokio-stream.workspace = true
|
|
|
|
# REST API dependencies
|
|
axum = "0.8"
|
|
uuid = { version = "1.11", features = ["v4", "serde"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
[dev-dependencies]
|
|
tempfile.workspace = true
|
|
criterion.workspace = true
|
|
|
|
[[bench]]
|
|
name = "storage_bench"
|
|
harness = false
|
|
|
|
[lib]
|
|
name = "flaredb_server"
|
|
path = "src/lib.rs"
|