-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
63 lines (60 loc) · 1.54 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
[workspace]
resolver = "2"
members = [
"marauder",
"scrolls",
"srv",
]
[workspace.package]
version = "0.5.0"
edition = "2021"
repository = "https://github.com/fenollp/reMarkable-tools"
authors = [
"Pierre Fenoll <[email protected]>",
]
[workspace.dependencies]
anyhow = "1"
async-stream = "0.3"
chrono = "0.4"
clap = { version = "4", features = ["derive", "env"] }
crc-any = { version = "2", default-features = false, features = ["heapless"] }
drawings.path = "drawings"
env_logger = "0.11"
futures = { version = "0.3", default-features = false, features = ["alloc"] }
itertools = "0.13"
log = "0.4"
nom = "5" # TODO: bump
pb.path = "pb"
prost = "0.13"
protoc-bin-vendored = "3"
qrcode-generator = "4"
quick-xml = { version = "0.22", features = ["serialize"] } # TODO: bump
rand = "0.8"
ringbuffer = "0.15"
serde = { version = "1", features = ["derive"] }
serde-jsonlines = { version = "0.6", features = ["async"] }
serde_json = "1"
tokio = { version = "1", features = ["rt-multi-thread", "time", "fs", "macros", "net"] }
tokio-stream = { version = "0.1", features = ["net"] }
tonic = "0.12"
tonic-build = "0.12"
tower = "0.5"
uuid = { version = "1", features = ["v4"] }
[workspace.dependencies.libremarkable]
# version = "0.6"
git = "https://github.com/canselcik/libremarkable"
branch = "master"
default-features = false
features = [
"appctx",
"battery",
"framebuffer",
"framebuffer-drawing",
"framebuffer-storage",
"framebuffer-text-drawing",
"framebuffer-types",
"image",
"input",
"input-types",
"scan",
]