- 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>
32 lines
773 B
TOML
32 lines
773 B
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" }
|
|
tokio.workspace = true
|
|
tonic.workspace = true
|
|
tonic-health.workspace = true
|
|
prost.workspace = true
|
|
clap.workspace = true
|
|
openraft.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
async-trait.workspace = true
|
|
tracing.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
rocksdb.workspace = true
|
|
futures.workspace = true
|
|
sha2.workspace = true
|
|
tokio-stream.workspace = true
|
|
|
|
[dev-dependencies]
|
|
tempfile.workspace = true
|
|
|
|
[lib]
|
|
name = "flaredb_server"
|
|
path = "src/lib.rs"
|