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

36 lines
863 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 12:28:37 +00:00
fastcrypto = { workspace = true }
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-04-29 00:16:40 +00:00
criterion = { version = "0.5", 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