[package]
edition = "2024"
rust-version = "1.89"
name = "engate-attach"
version = "0.1.1"
authors = ["pleme-io <ops@pleme.io>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Typed attach lifecycle (Spawned → Subscribed → Synced → Live) — engate's core machinery"
homepage = "https://github.com/pleme-io/engate"
readme = false
license = "MIT"
repository = "https://github.com/pleme-io/engate"
resolver = "2"
[features]
default = []
loom = []
[lib]
name = "engate_attach"
path = "src/lib.rs"
[[test]]
name = "loom_attach"
path = "tests/loom_attach.rs"
[[test]]
name = "prop_attach"
path = "tests/prop_attach.rs"
[dependencies.drop_bomb]
version = "0.1"
[dependencies.engate-types]
version = "0.1.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
[dependencies.typed-builder]
version = "0.21"
[dev-dependencies.loom]
version = "0.7"
[dev-dependencies.proptest]
version = "1"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "deny"