-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
53 lines (45 loc) · 1.12 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
[package]
name = "microflow"
description = "A robust and efficient TinyML inference engine"
authors = ["Matteo Carnelos <matteo.carnelos98@gmail.com>"]
documentation = "https://docs.rs/microflow"
repository = "https://github.com/matteocarnelos/microflow-rs"
categories = ["embedded", "no-std", "science"]
keywords = ["tinyml"]
license = "MIT OR Apache-2.0"
version = "0.1.3"
edition = "2021"
include = [
"/src/**",
"/benches/**",
"/tests/**",
"/models/**",
"/Cargo.toml",
"/LICENSE-MIT",
"/LICENSE-APACHE",
"/README.md",
]
[dependencies]
microflow-macros = { version = "0.1", path = "microflow-macros" }
nalgebra = { version = "0.32", default-features = false, features = ["macros"] }
simba = { version = "0.8", default-features = false }
libm = "0.2"
[dev-dependencies]
csv = "1.2"
criterion = "0.5"
[[bench]]
name = "sine"
harness = false
[[bench]]
name = "speech"
harness = false
[[bench]]
name = "person_detect"
harness = false
[workspace]
members = ["microflow-macros"]
exclude = ["examples"]
[patch.crates-io]
nalgebra = { git = "https://github.com/matteocarnelos/nalgebra" }
[profile.release]
lto = true