[package]
edition = "2021"
name = "car-sync"
version = "0.52.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Multi-device sync core for Common Agent Runtime — replica-tagged append-only oplog + deterministic CRDT fold"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/Parslee-ai/car"
[lib]
name = "car_sync"
path = "src/lib.rs"
[[test]]
name = "org_scope_e2e"
path = "tests/org_scope_e2e.rs"
[dependencies.argon2]
version = "0.5"
[dependencies.car-inference-types]
version = "0.52.0"
[dependencies.car-secrets]
version = "0.52.0"
[dependencies.car-state]
version = "0.52.0"
[dependencies.chacha20poly1305]
version = "0.10"
features = ["getrandom"]
[dependencies.ed25519-dalek]
version = "2"
features = ["zeroize"]
[dependencies.hkdf]
version = "0.12"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.tempfile]
version = "3"
[dependencies.uuid]
version = "1"
features = ["v4"]
[dependencies.x25519-dalek]
version = "2"
features = [
"static_secrets",
"zeroize",
]
[dependencies.zeroize]
version = "1"
[dev-dependencies.car-proto]
version = "0.52.0"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.x25519-dalek]
version = "2"
features = ["static_secrets"]
[lints.clippy]
assertions_on_constants = "allow"
doc_lazy_continuation = "allow"
empty_line_after_doc_comments = "allow"
field_reassign_with_default = "allow"
large_enum_variant = "allow"
needless_range_loop = "allow"
result_large_err = "allow"
too_many_arguments = "allow"
type_complexity = "allow"
unnecessary_sort_by = "allow"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
"cfg(car_system_audio)",
"cfg(car_skip_mlx)",
"cfg(car_skip_cuda)",
]