-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (33 loc) · 1.18 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
[package]
name = "const_cge"
version = "0.2.1"
edition = "2021"
authors = ["Will Brickner <[email protected]>"]
description = "Neural network compiler with a focus on no_std targets"
repository = "https://github.com/wbrickner/const_cge"
documentation = "https://docs.rs/const_cge"
readme = "README.md"
license = "MIT"
exclude = ["images/"]
keywords = ["cge", "neural", "machine-learning", "embedded", "no_std"]
categories = [
"embedded",
"no-std",
"science",
"science::robotics",
"computer-vision"
]
[dependencies]
# const_cge_macro = "0.2"
const_cge_macro = { path = "./const_cge_macro/" }
libm = { version = "0.2.2", optional = true }
micromath = { version = "2", optional = true }
[dev-dependencies]
cge = "0.1" # used in tests, to verify codegen matches the `cge` evaluation
proptest = "1" # used in tests, to verify codegen matches the `cge` evaluation
assert_float_eq = "1.1.3" # used in tests, to verify codegen matches the `cge` evaluation
[features]
default = ["libm"]
std = []
libm = ["dep:libm"] # enable libm dependency
micromath = ["dep:micromath", "dep:libm"] # enable micromath + libm dependency