[package]
edition = "2021"
name = "rill-lang"
version = "0.5.0"
authors = ["Digital Rats / Rill Team"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "rill-lang — a Faust-style functional streaming DSL compiled to rill Algorithm<T>"
documentation = "https://docs.rs/rill-lang"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/DigitalRats/rill"
[features]
default = []
serde = ["dep:serde"]
[lib]
name = "rill_lang"
path = "src/lib.rs"
[[test]]
name = "hybrid"
path = "tests/hybrid.rs"
[[test]]
name = "hybrid_stress"
path = "tests/hybrid_stress.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "smooth"
path = "tests/smooth.rs"
[[bench]]
name = "lang_bench"
path = "benches/lang_bench.rs"
harness = false
[dependencies.rill-core]
version = "0.5.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
[dependencies.thiserror]
version = "1.0"
[dev-dependencies.criterion]
version = "0.5"
features = [
"html_reports",
"html_reports",
]
[dev-dependencies.float-cmp]
version = "0.9"
[dev-dependencies.serde_json]
version = "1.0"