-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (34 loc) · 801 Bytes
/
Cargo.toml
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
33
34
35
36
37
38
39
40
[package]
name = "wave"
version = "0.1.1"
authors = ["flxzt"]
edition = "2021"
description = "A no-std no-alloc gesture recognition library for low resolution TOF-Sensors."
readme = "README.md"
homepage = "https://github.com/flxzt/wave"
repository = "https://github.com/flxzt/wave"
license = "MIT OR Apache-2.0"
keywords = ["embedded", "sensors", "tof", "gestures"]
categories = ["embedded", "no-std", "hardware-support"]
build = "build.rs"
exclude = [
"misc/showcase/*",
]
[lib]
name = "wave"
crate-type = ["lib", "staticlib"]
[profile.dev]
panic = "abort"
# always optimize for size
opt-level = "s"
[profile.release]
panic = "abort"
opt-level = "s"
[dependencies]
libm = "0.2"
[build-dependencies]
anyhow = "1"
cbindgen = "0.24"
[dev-dependencies]
approx = "0.5"
pretty_assertions = "1.3"