Files
huskies/crates/bft-json-crdt/Cargo.toml
T

36 lines
866 B
TOML
Raw Normal View History

2026-04-04 21:33:27 +01:00
[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" }
2026-05-12 18:28:42 +00:00
colored = "3"
2026-05-13 15:07:11 +00:00
ed25519-dalek = { workspace = true }
2026-05-13 12:28:37 +00:00
indexmap = { workspace = true, features = ["serde"] }
rand = { workspace = true }
2026-05-12 18:28:42 +00:00
random_color = "1"
2026-05-13 12:28:37 +00:00
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true, features = ["preserve_order"] }
2026-05-12 18:28:42 +00:00
serde_with = "3"
2026-05-13 12:28:37 +00:00
sha2 = { workspace = true }
2026-04-04 21:33:27 +01:00
[dev-dependencies]
2026-05-13 13:24:24 +00:00
criterion = { version = "0.8", features = ["html_reports"] }
2026-05-13 12:28:37 +00:00
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true, features = ["preserve_order"] }
2026-04-04 21:33:27 +01:00
[[bench]]
name = "speed"
harness = false