[package]
edition = "2021"
name = "rspl"
version = "0.1.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A stream processor language."
documentation = "https://docs.rs/rspl"
readme = "README.md"
keywords = [
"language",
"stream-processing",
"event-driven",
"demand-driven",
"state-machine",
]
categories = [
"asynchronous",
"concurrency",
"compilers",
"no-std",
]
license = "GPL-3.0-or-later"
repository = "https://github.com/shtsoft/rspl"
[features]
default = ["std"]
std = ["crossbeam"]
[lib]
name = "rspl"
path = "src/lib.rs"
[[example]]
name = "hics"
path = "examples/hics.rs"
[[example]]
name = "pelican"
path = "examples/pelican.rs"
[[example]]
name = "rspl_heapless"
path = "examples/rspl_heapless.rs"
[[test]]
name = "basic"
path = "tests/basic.rs"
required-features = ["std"]
[[test]]
name = "demands"
path = "tests/demands.rs"
required-features = ["std"]
[[test]]
name = "events"
path = "tests/events.rs"
required-features = ["std"]
[[test]]
name = "load"
path = "tests/load.rs"
required-features = ["std"]
[dependencies.crossbeam]
version = "0.8"
optional = true