[package]
edition = "2024"
name = "bones-core"
version = "0.18.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A CRDT-native issue tracker for distributed teams and AI agents"
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/bobisme/bones"
resolver = "2"
[lib]
name = "bones_core"
path = "src/lib.rs"
[[test]]
name = "convergence"
path = "tests/convergence.rs"
[[test]]
name = "edge_cases"
path = "tests/edge_cases.rs"
[[test]]
name = "fault_injection"
path = "tests/fault_injection.rs"
[[test]]
name = "format_compat"
path = "tests/format_compat.rs"
[[test]]
name = "generators"
path = "tests/generators.rs"
[[test]]
name = "itc"
path = "tests/itc.rs"
[[test]]
name = "multi_repo"
path = "tests/multi_repo.rs"
[[test]]
name = "prolly_sync"
path = "tests/prolly_sync.rs"
[[test]]
name = "proptest_semilattice"
path = "tests/proptest_semilattice.rs"
[[test]]
name = "replay_pipeline"
path = "tests/replay_pipeline.rs"
[[test]]
name = "tsjson_parse"
path = "tests/tsjson_parse.rs"
[[bench]]
name = "corpus"
path = "benches/corpus.rs"
harness = false
[[bench]]
name = "large_repo"
path = "benches/large_repo.rs"
harness = false
[[bench]]
name = "operations"
path = "benches/operations.rs"
harness = false
[[bench]]
name = "report"
path = "benches/report.rs"
harness = false
[dependencies.anyhow]
version = "1.0"
[dependencies.blake3]
version = "1.5"
[dependencies.bones-sqlite-vec]
version = "0.18.1"
[dependencies.bumpalo]
version = "3.20.2"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.dirs]
version = "5.0"
[dependencies.fs2]
version = "0.4"
[dependencies.memmap2]
version = "0.9.10"
[dependencies.rusqlite]
version = "0.30"
features = ["bundled"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.terseid]
version = "0.1.1"
[dependencies.thiserror]
version = "1.0"
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.proptest]
version = "1.4"
[dev-dependencies.tempfile]
version = "3.10"
[lints.clippy]
unnecessary_wraps = "allow"
unwrap_used = "deny"
[lints.clippy.nursery]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1