[package]
edition = "2024"
rust-version = "1.95.0"
name = "bombay-behavior"
version = "0.2.0"
authors = ["Joel DSouza <joel@devrandom.co>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Composable, statically typed actor behavior algebra"
homepage = "https://devrandom-labs.github.io/bombay-behavior/"
readme = false
keywords = [
"actor",
"async",
"behavior",
"concurrency",
]
categories = [
"asynchronous",
"concurrency",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/devrandom-labs/bombay-behavior"
resolver = "2"
[lib]
name = "behavior"
path = "src/lib.rs"
[[example]]
name = "pure"
path = "examples/pure.rs"
[[test]]
name = "algebra"
path = "tests/algebra.rs"
[dependencies.behavior-macros]
version = "0.2.0"
package = "bombay-behavior-macros"
[dependencies.communication]
version = "0.1.0"
package = "bombay-communication"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.47"
features = [
"sync",
"time",
"macros",
"rt",
]
default-features = false
[dev-dependencies.proptest]
version = "1.11"
[dev-dependencies.tokio]
version = "1.47"
features = [
"macros",
"rt",
"rt-multi-thread",
"time",
"sync",
"test-util",
]
default-features = false
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1