[package]
edition = "2021"
name = "byteflow-actors"
version = "0.5.0"
authors = ["Byteflow Contributors"]
build = false
include = [
"src/**/*",
"examples/**/*",
"docs/**/*",
"README.md",
"CHANGELOG.md",
"Cargo.toml",
"LICENSE*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Embeddable flow runtime: bytecode VM, M:N scheduler, Atomic Hop + FlowCap, supervisor"
homepage = "https://github.com/mchael158/bytecode-vm"
documentation = "https://docs.rs/byteflow-actors"
readme = "README.md"
keywords = [
"flows",
"bytecode",
"vm",
"concurrency",
"embedded",
]
categories = [
"concurrency",
"emulators",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/mchael158/bytecode-vm"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "byteflow"
path = "src/lib.rs"
[[bin]]
name = "byteflow"
path = "src/bin/byteflow.rs"
doc = false
[[example]]
name = "atomic_actors"
path = "examples/atomic_actors.rs"
[[example]]
name = "crash_and_restart"
path = "examples/crash_and_restart.rs"
[[example]]
name = "ping_pong"
path = "examples/ping_pong.rs"
[[example]]
name = "throughput"
path = "examples/throughput.rs"
[dependencies.crossbeam-deque]
version = "0.8"
[dependencies.num_cpus]
version = "1"
[lints.clippy]
expect_used = "deny"
unwrap_used = "deny"
[lints.rust]
unsafe_code = "forbid"