[package]
edition = "2024"
name = "fixed-dsp"
version = "0.2.1"
build = "build.rs"
include = [
"src/**",
"Cargo.toml",
"build.rs",
"README.md",
"README_zh.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust library for fixed-point digital signal processing (DSP) algorithms."
homepage = "https://github.com/LinkWanna/fixed-dsp"
documentation = "https://docs.rs/fixed-dsp"
readme = "README.md"
keywords = [
"dsp",
"fixed-point",
"embedded",
"signal-processing",
]
categories = [
"embedded",
"no-std",
"algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/LinkWanna/fixed-dsp"
[features]
default = []
difftest = []
[lib]
name = "fixed_dsp"
path = "src/lib.rs"
[dependencies]
[build-dependencies.cc]
version = "1"