- Remove gitlinks (160000 mode) for chainfire, flaredb, iam - Add workspace contents as regular tracked files - Update flake.nix to use simple paths instead of builtins.fetchGit This resolves the nix build failure where submodule directories appeared empty in the nix store. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
59 lines
1.3 KiB
TOML
59 lines
1.3 KiB
TOML
[package]
|
|
name = "chainfire-server"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
rust-version.workspace = true
|
|
description = "Chainfire distributed KVS server"
|
|
|
|
[lib]
|
|
name = "chainfire_server"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "chainfire"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
chainfire-types = { workspace = true }
|
|
chainfire-storage = { workspace = true }
|
|
chainfire-raft = { workspace = true }
|
|
chainfire-gossip = { workspace = true }
|
|
chainfire-watch = { workspace = true }
|
|
chainfire-api = { workspace = true }
|
|
|
|
# Async
|
|
tokio = { workspace = true }
|
|
futures = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
|
|
# Raft (for RPC types)
|
|
openraft = { workspace = true }
|
|
|
|
# gRPC
|
|
tonic = { workspace = true }
|
|
tonic-health = { workspace = true }
|
|
|
|
# Configuration
|
|
clap = { workspace = true }
|
|
toml = { workspace = true }
|
|
serde = { workspace = true }
|
|
|
|
# Logging
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
|
|
# Metrics
|
|
metrics = { workspace = true }
|
|
metrics-exporter-prometheus = { workspace = true }
|
|
|
|
# Utilities
|
|
anyhow = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tempfile = { workspace = true }
|
|
chainfire-client = { workspace = true }
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "time"] }
|
|
|
|
[lints]
|
|
workspace = true
|