Files
huskies/crates/bft-json-crdt/Cargo.toml
T
2026-05-13 15:11:37 +00:00

36 lines
866 B
TOML

[package]
name = "bft-json-crdt"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["lib"]
[features]
default = ["bft", "logging-list", "logging-json"]
logging-list = ["logging-base"]
logging-json = ["logging-base"]
logging-base = []
bft = []
[dependencies]
bft-crdt-derive = { path = "bft-crdt-derive" }
colored = "3"
ed25519-dalek = { workspace = true }
indexmap = { workspace = true, features = ["serde"] }
rand = { workspace = true }
random_color = "1"
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true, features = ["preserve_order"] }
serde_with = "3"
sha2 = { workspace = true }
[dev-dependencies]
criterion = { version = "0.8", features = ["html_reports"] }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true, features = ["preserve_order"] }
[[bench]]
name = "speed"
harness = false