[package]
edition = "2021"
rust-version = "1.92"
name = "syncbat"
version = "0.10.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Sync-first runtime layer for batpak-family operation kits."
homepage = "https://github.com/freebatteryfactory/batpak"
documentation = "https://docs.rs/syncbat"
readme = "README.md"
keywords = [
"event-sourcing",
"runtime",
"sync",
"operation-kit",
]
categories = ["database-implementations"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/freebatteryfactory/batpak"
[features]
default = []
payload-encryption = ["batpak/payload-encryption"]
[lib]
name = "syncbat"
path = "src/lib.rs"
[[test]]
name = "admission_seam"
path = "tests/admission_seam.rs"
[[test]]
name = "capability_authz"
path = "tests/capability_authz.rs"
[[test]]
name = "crypto_shred_delivery"
path = "tests/crypto_shred_delivery.rs"
[[test]]
name = "descriptor_validation"
path = "tests/descriptor_validation.rs"
[[test]]
name = "effect_enforcement"
path = "tests/effect_enforcement.rs"
[[test]]
name = "emit_receipt_backed"
path = "tests/emit_receipt_backed.rs"
[[test]]
name = "mutation_kill_syncbat-core-surfaces"
path = "tests/mutation_kill_syncbat-core-surfaces.rs"
[[test]]
name = "mutation_kill_syncbat-registry"
path = "tests/mutation_kill_syncbat-registry.rs"
[[test]]
name = "mutation_kill_syncbat-streams"
path = "tests/mutation_kill_syncbat-streams.rs"
[[test]]
name = "mutation_kill_syncbat-subscription-runtime"
path = "tests/mutation_kill_syncbat-subscription-runtime.rs"
[[test]]
name = "operation_macro"
path = "tests/operation_macro.rs"
[[test]]
name = "operation_macro_errors"
path = "tests/operation_macro_errors.rs"
[[test]]
name = "property"
path = "tests/property.rs"
[[test]]
name = "receipt_namespace"
path = "tests/receipt_namespace.rs"
[[test]]
name = "register_properties"
path = "tests/register_properties.rs"
[[test]]
name = "register_store_catalog"
path = "tests/register_store_catalog.rs"
[[test]]
name = "runtime"
path = "tests/runtime.rs"
[[test]]
name = "store_effect_backed"
path = "tests/store_effect_backed.rs"
[[test]]
name = "store_sink"
path = "tests/store_sink.rs"
[[test]]
name = "wire_stability"
path = "tests/wire_stability.rs"
[[bench]]
name = "dispatch"
path = "benches/dispatch.rs"
harness = false
[dependencies.batpak]
version = "0.10.0"
default-features = false
[dependencies.batpak-macros]
version = "0.10.0"
[dependencies.blake3]
version = "1"
[dependencies.flume]
version = "0.12"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.blake3]
version = "1"
[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tempfile]
version = ">=3.24, <3.25"
[dev-dependencies.tracing]
version = "0.1"
[dev-dependencies.trybuild]
version = "1"
[lints.clippy]
assertions_on_constants = "deny"
cast_possible_truncation = "deny"
cast_sign_loss = "deny"
clone_on_ref_ptr = "warn"
dbg_macro = "deny"
disallowed_methods = "deny"
large_enum_variant = "warn"
missing_errors_doc = "warn"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "warn"
needless_return = "deny"
panic = "deny"
print_stderr = "deny"
print_stdout = "deny"
todo = "deny"
unimplemented = "deny"
unwrap_used = "deny"
wildcard_enum_match_arm = "warn"
[lints.rust]
deprecated = "deny"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(gauntlet_red_fixture)"]