-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
64 lines (52 loc) · 1.01 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 = "pinetime-rs"
version = "0.1.0"
edition = "2018"
build = "build.rs"
exclude = [
"host-tools",
"doc",
]
[workspace]
members = [
"pinetime-common",
"pinetime-drivers",
"pinetime-graphics",
"host-tools/icon-font-gen",
"host-tools/pinetime-simulator",
]
[[bin]]
name = "pinetime"
path = "src/main.rs"
[dependencies]
cortex-m = "0.7"
cortex-m-rt = "0.7"
cortex-m-rtic = "0.6.0-rc.2"
#rubble =
#rubble-nrf5x =
[dependencies.nrf52832-hal]
version = "0.14"
features = ["rt"]
default-features = false
[dependencies.rtt-target]
version = "0.3"
features = ["cortex-m"]
default-features = false
[dependencies.panic-rtt-target]
version = "0.1"
features = ["cortex-m"]
default-features = false
[dependencies.pinetime-common]
path = "pinetime-common"
[dependencies.pinetime-drivers]
path = "pinetime-drivers"
[dependencies.pinetime-graphics]
path = "pinetime-graphics"
[build-dependencies]
built = "0.5"
[profile.dev]
codegen-units = 1
[profile.release]
lto = true
debug = true
codegen-units = 1