[package]
edition = "2024"
rust-version = "1.85"
name = "liminal-rs"
version = "0.2.0"
authors = ["Tom Whiting <tom@ablative.com.au>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A conversation-based messaging bus built on beamr"
readme = false
license = "AGPL-3.0-only"
repository = "https://github.com/ablative-io/liminal"
resolver = "2"
[lib]
name = "liminal"
path = "src/lib.rs"
[[test]]
name = "channel_metrics"
path = "tests/channel_metrics.rs"
[[test]]
name = "conversation_metrics"
path = "tests/conversation_metrics.rs"
[[test]]
name = "durability_channel"
path = "tests/durability_channel.rs"
[[test]]
name = "durability_foundation"
path = "tests/durability_foundation.rs"
[[test]]
name = "durability_real_persistence"
path = "tests/durability_real_persistence.rs"
[[test]]
name = "metrics_registry"
path = "tests/metrics_registry.rs"
[[test]]
name = "pressure_metrics"
path = "tests/pressure_metrics.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.beamr]
version = "0.11.0"
features = [
"cooperative",
"json",
]
[dependencies.chrono]
version = "0.4.45"
[dependencies.haematite]
version = "0.3.0"
[dependencies.jsonschema]
version = "0.46.5"
default-features = false
[dependencies.rand]
version = "0.10.1"
[dependencies.serde_json]
version = "1"
features = ["std"]
default-features = false
[dependencies.thiserror]
version = "2"
features = ["std"]
default-features = false
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1.23.3"
features = ["v4"]
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
expect_used = "deny"
panic = "deny"
unwrap_used = "deny"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.module_name_repetitions]
level = "allow"
priority = 1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
unsafe_code = "deny"