-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 955 Bytes
/
Copy pathCargo.toml
File metadata and controls
32 lines (28 loc) · 955 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "embedded-dsp"
version = "0.2.2"
edition = "2021"
authors = ["Gerzain Mata <leftger@gmail.com>"]
description = "A no_std Rust digital signal processing library for microcontrollers, embedded systems, and real-time signals."
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/leftger/embedded-dsp"
keywords = ["dsp", "embedded", "no_std", "signal-processing", "fft"]
categories = ["embedded", "no-std", "science"]
[features]
default = ["std", "libm"]
std = []
libm = ["dep:libm"]
defmt = ["dep:defmt"]
serde = ["dep:serde"]
alloc = []
[dependencies]
libm = { version = "0.2.11", optional = true }
defmt = { version = "0.3", optional = true, default-features = false }
serde = { version = "1.0", optional = true, default-features = false, features = ["derive"] }
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[[example]]
name = "perf_comparison"
path = "examples/perf_comparison.rs"