[package]
edition = "2024"
rust-version = "1.89.0"
name = "tear-client"
version = "0.1.3"
authors = ["pleme-io"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Typed RPC client for tear-daemon. Consumed by the tear bin, mado (Tier 2 native-split mode), and third parties that want to drive tear sessions."
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/pleme-io/tear"
resolver = "2"
[features]
default = []
engate = [
"dep:engate-types",
"dep:engate-attach",
"tear-types/engate",
]
[lib]
name = "tear_client"
path = "src/lib.rs"
[dependencies.engate-attach]
version = "0.1"
optional = true
[dependencies.engate-types]
version = "0.1"
optional = true
[dependencies.parking_lot]
version = "0.12"
[dependencies.serde_yaml_ng]
version = "0.10"
[dependencies.tear-config]
version = "0.1.0"
[dependencies.tear-types]
version = "0.1.0"
[dev-dependencies]
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1