[package]
edition = "2024"
name = "bones-sim"
version = "0.24.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Deterministic simulation harness for testing CRDT correctness in bones"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/bobisme/bones"
resolver = "2"
[lib]
name = "bones_sim"
path = "src/lib.rs"
[[bin]]
name = "sim"
path = "src/bin/sim.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.bones-core]
version = "0.24.0"
[dependencies.proptest]
version = "1.4"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.terseid]
version = "0.1.2"
[dependencies.tracing]
version = "0.1"
[lints.clippy]
unnecessary_wraps = "allow"
unwrap_used = "deny"
[lints.clippy.nursery]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1