photoncloud-monorepo/flashdns/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

70 lines
1.4 KiB
TOML

[workspace]
resolver = "2"
members = [
"crates/flashdns-types",
"crates/flashdns-api",
"crates/flashdns-server",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
rust-version = "1.75"
authors = ["FlashDNS Contributors"]
repository = "https://github.com/flashdns/flashdns"
[workspace.dependencies]
# Internal crates
flashdns-types = { path = "crates/flashdns-types" }
flashdns-api = { path = "crates/flashdns-api" }
flashdns-server = { path = "crates/flashdns-server" }
# Async runtime
tokio = { version = "1.40", features = ["full", "net"] }
tokio-stream = "0.1"
futures = "0.3"
async-trait = "0.1"
# gRPC
tonic = "0.12"
tonic-build = "0.12"
tonic-health = "0.12"
prost = "0.13"
prost-types = "0.13"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Utilities
thiserror = "1.0"
anyhow = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
bytes = "1.5"
dashmap = "6"
uuid = { version = "1", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
# DNS specific
trust-dns-proto = "0.23"
ipnet = "2.9"
# Metrics
metrics = "0.23"
metrics-exporter-prometheus = "0.15"
# Configuration
toml = "0.8"
clap = { version = "4", features = ["derive", "env"] }
config = { version = "0.13", features = ["toml", "yaml"] }
# Testing
tempfile = "3.10"
[workspace.lints.rust]
unsafe_code = "deny"
[workspace.lints.clippy]
all = "warn"