forked from canselcik/libremarkable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
64 lines (56 loc) · 1.45 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
54
55
56
57
58
59
60
61
62
63
64
[package]
name = "libremarkable"
version = "0.3.2"
authors = ["Can Selcik <[email protected]>"]
is-it-maintained-issue-resolution = { repository = "https://github.com/canselcik/libremarkable" }
is-it-maintained-open-issues = { repository = "https://github.com/canselcik/libremarkable" }
repository = "https://github.com/canselcik/libremarkable"
maintenance = { status = "actively-developed" }
license = "MIT"
description = "The only publicly available Framework for developing applications for the Remarkable Paper Tablet w/ Low Latency Partial Refresh Support"
readme = "README.md"
exclude = [ "reference-material/*", "legacy-c-impl/*", "private/*" ]
[build]
target= "armv7-unknown-linux-gnueabihf"
[dependencies]
log = "0.4.1"
env_logger = "0.7.1"
ioctl-gen = "0.1.0"
libc = "0.2.37"
mmap = "0.1.1"
rusttype = "0.8.2"
evdev = "0.10.1"
epoll = "4.0.1"
image = "0.21"
line_drawing = "0.8.0"
hlua = "0.4.1"
aabb-quadtree = "0.1.0"
zstd = "0.5.1"
stopwatch = "0.0.7"
atomic = { version = "0.4.5", features = ["nightly"] }
cgmath = "0.17.0"
[features]
enable-runtime-benchmarking = []
[profile.release]
debug = true
[[example]]
name = "spy"
path = "examples/spy.rs"
crate-type = ["dylib"]
[[example]]
name = "demo"
path = "examples/demo.rs"
crate-type = ["bin"]
[[example]]
name = "live"
path = "examples/live.rs"
crate-type = ["bin"]
[dev-dependencies]
# For spy
redhook = "1.0.0"
libc = "0.2.37"
lazy_static = "1.4.0"
# For demo
chrono = "0.4.0"
# For live
tiny_http = "0.6.0"