-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
43 lines (36 loc) · 1.03 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
[package]
name = "armrest"
version = "0.1.0"
authors = ["Ben Kirwin <ben@kirw.in>"]
edition = "2018"
[dependencies]
#libremarkable = { path = "../libremarkable", default-features = false, features = ['framebuffer']}
libremarkable = { git = "https://github.com/canselcik/libremarkable", default-features = false, features = ['framebuffer-drawing', 'input'] }
#tflite = { path = "../tflite-rs" }
tflite = { git = "https://github.com/bkirwi/tflite-rs", rev = "4212a1bf33ebbcbf535b162cc591d46c7d054d92", optional = true }
flo_curves = "0.4.1"
lyon_geom = "0.17.0"
partial_sort = "0.1.2"
rusttype = "0.8.2"
textwrap = "0.13.4"
itertools = "0.10.0"
strsim = "0.10.0"
image = "0.23.14"
serde = "1.0.136"
cgmath = { version = "0.18.0" }
[dev-dependencies]
lazy_static = "1.4.0"
once_cell = "1.9.0"
serde_json = "1.0.78"
xdg = "^2.1"
[dependencies.hyphenation]
version = "0.8.0"
features = ["embed_en-us"]
[features]
default = ["tflite"]
[[bin]]
name = "ink-to-tensor"
required-features = ["tflite"]
[[bin]]
name = "test-tflite"
required-features = ["tflite"]