photoncloud-monorepo/flaredb/crates/flaredb-server/Cargo.toml
centra 5c6eb04a46 T036: Add VM cluster deployment configs for nixos-anywhere
- netboot-base.nix with SSH key auth
- Launch scripts for node01/02/03
- Node configuration.nix and disko.nix
- Nix modules for first-boot automation

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-11 09:59:19 +09:00

44 lines
1.1 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
[dev-dependencies]
tempfile.workspace = true
criterion.workspace = true
[[bench]]
name = "storage_bench"
harness = false
[lib]
name = "flaredb_server"
path = "src/lib.rs"