- 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>
35 lines
785 B
TOML
35 lines
785 B
TOML
[package]
|
|
name = "chainfire-gossip"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
rust-version.workspace = true
|
|
description = "Gossip/SWIM protocol integration for Chainfire distributed KVS"
|
|
|
|
[dependencies]
|
|
chainfire-types = { workspace = true }
|
|
|
|
# Gossip (SWIM protocol)
|
|
foca = { workspace = true }
|
|
|
|
# Async
|
|
tokio = { workspace = true }
|
|
futures = { workspace = true }
|
|
|
|
# Serialization
|
|
serde = { workspace = true }
|
|
bincode = { workspace = true }
|
|
|
|
# Utilities
|
|
tracing = { workspace = true }
|
|
parking_lot = { workspace = true }
|
|
dashmap = { workspace = true }
|
|
bytes = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
rand = "0.9"
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "time"] }
|
|
|
|
[lints]
|
|
workspace = true
|