idsp 0.22.0

DSP algorithms for embedded, mostly integer math
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 = "2024"
name = "idsp"
version = "0.22.0"
authors = ["Robert Jördens <rj@quartiq.de>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "DSP algorithms for embedded, mostly integer math"
homepage = "https://github.com/quartiq/idsp"
documentation = "https://docs.rs/idsp"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/quartiq/idsp"

[features]
bytemuck = ["dep:bytemuck"]
miniconf = [
    "dep:miniconf",
    "serde",
]
py = [
    "dep:pyo3",
    "dep:numpy",
    "std",
]
serde = [
    "dep:serde",
    "dsp-fixedpoint/serde",
]
std = []

[lib]
name = "idsp"
path = "src/lib.rs"

[[example]]
name = "ddc_lockin"
path = "examples/ddc_lockin.rs"

[[example]]
name = "fm_disc"
path = "examples/fm_disc.rs"

[[example]]
name = "polyphase_channelizer"
path = "examples/polyphase_channelizer.rs"

[dependencies.bytemuck]
version = "1.24.0"
features = ["derive"]
optional = true

[dependencies.dsp-fixedpoint]
version = "0.2.0"

[dependencies.dsp-process]
version = "0.3.0"

[dependencies.miniconf]
version = "0.21.0"
features = [
    "derive",
    "meta-node",
    "meta-edge",
]
optional = true
default-features = false

[dependencies.num-traits]
version = "0.2.14"
features = ["libm"]
default-features = false

[dependencies.numpy]
version = "0.27"
optional = true

[dependencies.pyo3]
version = "0.27.1"
features = ["extension-module"]
optional = true

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
default-features = false

[dev-dependencies.bytemuck]
version = "1.24.0"

[dev-dependencies.log]
version = "0.4"

[dev-dependencies.quickcheck]
version = "1.0.3"

[dev-dependencies.quickcheck_macros]
version = "1.0.0"

[dev-dependencies.rand]
version = "0.9.1"

[dev-dependencies.rustfft]
version = "6.1.0"

[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

[profile.debugging]
debug = 2
inherits = "dev"

[profile.dev]
debug = "line-tables-only"

[profile.dev.package."*"]
debug = 0