forked from sonos/tract
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
112 lines (105 loc) · 2.4 KB
/
Cargo.toml
File metadata and controls
112 lines (105 loc) · 2.4 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
[workspace]
members = [
"data",
"linalg",
"core",
"pulse",
"pulse-opl",
"hir",
"nnef",
"tensorflow",
"onnx-opl",
"onnx",
"kaldi",
"libcli",
"cli",
"ffi",
"examples/tensorflow-mobilenet-v2",
"examples/jupyter-keras-tract-tf1",
"examples/jupyter-keras-tract-tf2",
"examples/nnef-dump-mobilenet-v2",
"examples/nnef-mobilenet-v2",
"examples/onnx-mobilenet-v2",
"examples/pytorch-albert-v2",
"examples/pytorch-resnet",
"harness/core-proptest-pulse",
"harness/lstm-proptest-onnx-vs-tf",
"harness/nnef-inceptionv3",
"harness/onnx-test-suite",
"harness/tf-inceptionv3",
"harness/tf-mobilenet-v2",
"harness/tf-moz-deepspeech",
]
[workspace.dependencies]
ansi_term = "0.12.1"
anyhow = "1.0.43"
approx = "0.5"
atty = "0.2.14"
bit-set= "0.5.2"
box_drawing = "0.1.2"
byteorder = "1.4.3"
bytes = "1.0.1"
cc = "1.0.69"
clap = { version = "~3.1", features = [ "cargo" ] }
colorous = "1.0.5"
criterion = "0.4"
derive-new = "0.5.9"
dinghy-test = "0.6"
downcast-rs = "1.2.0"
dyn-clone = "1.0.4"
educe = "0.4.18"
env_logger = "0.9.0"
flate2 = "1.0.20"
fs2 = "0.4.3"
getrandom = "0.2"
half = { version="2", features = [ "std", "num-traits" ] }
image = "0.24.1"
itertools = "0.10.1"
lazy_static = "1.4.0"
liquid = "0.26"
liquid-core = "0.26"
log = "0.4.14"
maplit = "1.0.2"
memmap2 = "0.5"
ndarray = "0.15.3"
ndarray-npy = { version = "0.8.0", features = [ "compressed_npz" ] }
nom = "7.0.0"
num-complex = "0.4.0"
num-integer = "0.1.44"
num-traits = "0.2.14"
paste = "1.0.5"
proptest = "1.0.0"
prost = "0.11.0"
prost-types = "0.11.0"
py_literal = "0.4.0"
rand = { version = "0.8.4", features = ["small_rng"] }
readings-probe = "0.1.3"
regex = "1.5.4"
reqwest = { version = "0.11.4", features = [ "blocking", "rustls" ], default-features = false }
rustls = "0.20.4"
smallvec = "1.6.1"
scan_fmt = "0.2.6"
serde = "1.0.127"
serde_derive = "1.0.127"
serde_json = "1.0"
string-interner = "0.14"
tar = "0.4.37"
tensorflow = "0.17.0"
tokenizers = "0.13"
unicode-normalization = "0.1.19"
walkdir = "2.3.2"
[profile.opt-no-lto]
inherits="release"
lto=false
[profile.release]
lto = true
[profile.bench]
debug = true
[profile.dev.package."*"]
opt-level = 2
[profile.dev.package.darling_macro]
opt-level = 0 # work around never ending build on wondows
[profile.dev.build-override]
debug = false
# strip = "debuginfo" does not work on android and ios
incremental = false