forked from nw-rs/rustworks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
55 lines (49 loc) · 1.31 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
[package]
name = "rustworks"
version = "0.0.1"
authors = ["willemml <willem@leit.so>"]
edition = "2018"
license = "GPL-3.0"
description = "An operating system for the Numworks n0110 calculator."
repository = "https://github.com/willemml/rustworks"
homepage = "https://github.com/willemml/rustworks"
[dependencies]
cortex-m = "0.6"
cortex-m-rt = "0.6"
rtt-target = { version = "0.3", features = ["cortex-m"] }
alloc-cortex-m = "0.4.1"
embedded-hal = "0.2"
cortex-m-rtic = "0.5"
embedded-graphics = "0.6"
embedded-text = { version = "0.4", default-features = false }
heapless = "0.7"
st7789 = { version = "0.5", features = ["batch"] }
display-interface-parallel-gpio = "0.6"
stm32f7xx-hal = { git = "https://github.com/willemml/stm32f7xx-hal", branch = "fsmc_lcd", features = ["stm32f730", "rt", "fmc_lcd"] }
num-traits = { version = "0.2", default-features = false }
num-derive = "0.3"
rcas = { git = "https://github.com/willemml/rcas" }
[[bin]]
name = "rustworks"
test = false
bench = false
[profile.dev.package."*"]
opt-level = "s"
[profile.dev]
opt-level = "z"
debug = 1
debug-assertions = false
overflow-checks = false
lto = true
panic = 'abort'
incremental = false
codegen-units = 1
rpath = false
[profile.release.package."*"]
opt-level = "s"
[profile.release]
codegen-units = 1
debug = true
panic = "abort"
opt-level = "z"
lto = true