[package]
edition = "2024"
rust-version = "1.96"
name = "bombay-framework"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Application-facing composition for the bombay local runtime."
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/devrandom-labs/bombay"
[lib]
name = "bombay_framework"
path = "src/lib.rs"
[[example]]
name = "job_queue"
path = "examples/job_queue.rs"
[[example]]
name = "local_runtime"
path = "examples/local_runtime.rs"
[dependencies.bombay]
version = "0.1.0"
package = "bombay-rs"
[dev-dependencies.behavior]
version = "0.9.5"
package = "bombay-behavior"
[dev-dependencies.tokio]
version = "1.47"
features = [
"rt",
"macros",
"time",
"sync",
]
default-features = false
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1