- 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>
37 lines
1 KiB
TOML
37 lines
1 KiB
TOML
[package]
|
|
name = "chainfire-core"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
description = "Embeddable distributed cluster library with Raft consensus and SWIM gossip"
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
# Internal crates
|
|
chainfire-types = { workspace = true }
|
|
# Note: chainfire-storage, chainfire-raft, chainfire-gossip, chainfire-watch
|
|
# will be added as implementation progresses
|
|
# chainfire-storage = { workspace = true }
|
|
# chainfire-raft = { workspace = true }
|
|
# chainfire-gossip = { workspace = true }
|
|
# chainfire-watch = { workspace = true }
|
|
|
|
# Async runtime
|
|
tokio = { workspace = true }
|
|
tokio-stream = { workspace = true }
|
|
futures = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
|
|
# Utilities
|
|
thiserror = { workspace = true }
|
|
tracing = { workspace = true }
|
|
bytes = { workspace = true }
|
|
parking_lot = { workspace = true }
|
|
dashmap = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true, features = ["test-util"] }
|
|
tempfile = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|