- Created T026-practical-test task.yaml for MVP smoke testing - Added k8shost-server to flake.nix (packages, apps, overlays) - Staged all workspace directories for nix flake build - Updated flake.nix shellHook to include k8shost Resolves: T026.S1 blocker (R8 - nix submodule visibility)
69 lines
1.4 KiB
TOML
69 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"] }
|
|
|
|
# Testing
|
|
tempfile = "3.10"
|
|
|
|
[workspace.lints.rust]
|
|
unsafe_code = "deny"
|
|
|
|
[workspace.lints.clippy]
|
|
all = "warn"
|