-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (36 loc) · 1.16 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
[package]
name = "slate"
version = "0.1.0"
authors = ["Mitch Souders <mitch.souders@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
#epd-waveshare = {path="../epd-waveshare"}
epd-waveshare = {git="https://github.com/caemor/epd-waveshare", revision="b3f9bc8"}
embedded-graphics = "0.7.1"
rppal = {version="0.11.3", features=["hal", "hal-unproven"], optional=true}
image = "0.23.14"
embedded-hal = {version="0.2.4", optional=true}
embedded-hal-mock = {version="0.8.0", optional=true}
qrcode = {version="0.11", default-features = false }
gb = {git="https://github.com/crzysdrs/gb-rs", package="gb"}
zip = "0.5"
walkdir = "2"
embedded-graphics-simulator = {version="0.3.0", optional=true}
cfg-if = "1.0.0"
regex = "1.4.2"
strsim = "0.10.0"
toml = "0.5.7"
serde_derive = "1.0.118"
serde = "1.0.118"
imageproc = "0.22.0"
rand = "0.8.4"
rocket = {version="0.5.0-rc.1", optional=true}
sha2 = "0.9.5"
gethostname = "0.2.1"
anyhow = "1.0.43"
[features]
default = ["sim"]
web = ["rocket"]
spi = ["rppal", "embedded-hal"]
sim = ["embedded-graphics-simulator", "embedded-hal", "embedded-hal-mock"]