-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (23 loc) · 883 Bytes
/
Copy pathCargo.toml
File metadata and controls
27 lines (23 loc) · 883 Bytes
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
[package]
name = "embedded-systems-board-uni-hd"
authors = ["Felix Richter <judge@felixrichter.tech>"]
edition = "2018"
readme = "README.md"
version = "0.1.0"
[dependencies]
cortex-m = { version = "0.6.1" , features=["inline-asm"]}
cortex-m-rt = "0.6.10"
cortex-m-semihosting = "0.3.5"
atsame70q21 = { git = "https://github.com/ju6ge/atsame70q21", version = "0.0.1" }
atsamx7x-hal = { git = "https://github.com/ju6ge/atsamx7x-hal/", version = "0.0.1" }
#atsamx7x-hal = { path = "../atsamx7x-hal/", version = "0.0.1" }
embedded-hal = { version = "0.2.3", features = ["unproven"] }
panic-halt = "0.2.0"
linked_list_allocator = "0.8.4"
[profile.dev]
debug = true # symbols are nice and they don't increase the size on Flash
opt-level = "z"
[profile.release]
debug = true # symbols are nice and they don't increase the size on Flash
opt-level = "z"
lto = true # better optimizations