This repository has been archived by the owner on Oct 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
89 lines (73 loc) · 1.8 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
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
[package]
name = "wio-terminal"
version = "0.1.0"
authors = ["Jesse Braham <jesse@beta7.io>", "Tom <twitchyliquid64@ciphersink.net>"]
edition = "2018"
description = "Board support crate for the Seeed Studio Wio Terminal"
documentation = "https://docs.rs/wio-terminal/"
readme = "README.md"
repository = "https://github.com/jessebraham/wio-terminal"
license = "MIT OR Apache-2.0"
keywords = [
"arm",
"cortex-m",
"embedded-hal",
"no-std",
]
categories = [
"embedded",
"hardware-support",
"no-std",
]
[dependencies]
cortex-m = "~0.6"
cortex-m-rt = { version = "~0.6", optional = true }
display-interface-spi = "0.4.0"
heapless = "~0.5"
drogue-nom-utils = "0.1.0"
[dependencies.atsamd-hal]
git = "https://github.com/atsamd-rs/atsamd"
rev = "3097042ce7ce1b3e4dcc42efd450dff9ead8868f"
[dependencies.lis3dh]
git = "https://github.com/BenBergman/lis3dh-rs"
rev = "0bd78d8aaf197dba9a4570c2934bf222ca20562c"
[dependencies.ili9341]
git = "https://github.com/yuri91/ili9341-rs"
rev = "afbfd98f9dfe934ddffa9c2ef45d4eccd9ad8ce8"
[dependencies.usb-device]
version = "~0.2"
optional = true
[dependencies.usbd-serial]
version = "~0.1"
optional = true
[dependencies.nom]
default-features = false
version = "^5"
[dev-dependencies]
embedded-graphics = "~0.6"
panic-halt = "~0.2"
[features]
default = ["atsamd-hal/samd51p19a", "rt", "unproven", "usb"]
rt = ["atsamd-hal/samd51p19a-rt", "cortex-m-rt"]
unproven = ["atsamd-hal/unproven"]
usb = ["atsamd-hal/usb", "usb-device", "usbd-serial"]
[profile.dev]
incremental = false
codegen-units = 1
debug = true
lto = true
[profile.release]
lto = true
opt-level = "s"
[[example]]
name = "blinky"
[[example]]
name = "buttons"
[[example]]
name = "orientation"
[[example]]
name = "usb_serial_display"
required-features = ["usb"]
[[example]]
name = "clock"
required-features = ["usb"]