[package]
edition = "2024"
name = "dsp-process"
version = "0.3.0"
authors = ["Robert Jördens <rj@quartiq.de>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Composable no_std DSP processing traits and adapters for split config/state pipelines"
readme = "README.md"
keywords = [
"dsp",
"embedded",
"no-std",
"filter",
"pipeline",
]
categories = [
"embedded",
"no-std",
"science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/quartiq/idsp"
[package.metadata."docs.rs"]
all-features = true
[features]
bytemuck = ["dep:bytemuck"]
[lib]
name = "dsp_process"
path = "src/lib.rs"
[dependencies.bytemuck]
version = "1.25.0"
features = ["min_const_generics"]
optional = true
default-features = false
[dev-dependencies.dsp-fixedpoint]
version = "0.1.1"
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"
[lints.rust.rust_2018_compatibility]
level = "deny"
priority = -1
[lints.rust.rust_2018_idioms]
level = "deny"
priority = -1