-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
57 lines (47 loc) · 1.08 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
[package]
name = "bootleby"
version = "0.1.0"
edition = "2021"
[features]
# We select default features here purely for rust-analyzer.
default = ["target-board-rot-carrier"]
target-board-lpc55xpresso = []
target-board-oxide-rot-1 = []
target-board-rot-carrier = []
allow-unsigned-images = []
[dependencies]
cfg-if = "1.0.0"
cortex-m = { version = "0.7.7", features = ["inline-asm"] }
cortex-m-rt = "0.7.5"
crc = { version = "3.0.1", default-features = false }
crc-catalog = "2.2.0"
hex-literal = "0.4.1"
lpc55-pac = { version = "0.5.0", features = ["rt"] }
num-derive = { version = "0.4.2", default-features = false }
num-traits = { version = "0.2.15", default-features = false }
static_assertions = "1.1.0"
tinycrc = {path = "tinycrc"}
zerocopy = { version = "0.6.1", default-features = false }
[profile.dev]
opt-level = 1
[profile.release]
opt-level = "s"
codegen-units = 1
lto = true
debug = true
[lib]
name = "bootleby"
test = false
bench = false
[[bin]]
name = "bootleby"
test = false
bench = false
[[bin]]
name = "sha_tests"
test = false
bench = false
[workspace]
members = [
"tinycrc",
]