rspl 0.1.3

A stream processor language.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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