forked from mcu-tools/mcuboot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (33 loc) · 938 Bytes
/
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
[package]
name = "bootsim"
version = "0.1.0"
authors = ["David Brown <[email protected]>"]
[features]
default = []
sig-rsa = ["mcuboot-sys/sig-rsa"]
sig-ecdsa = ["mcuboot-sys/sig-ecdsa"]
overwrite-only = ["mcuboot-sys/overwrite-only"]
validate-slot0 = ["mcuboot-sys/validate-slot0"]
[build-dependencies]
gcc = "0.3.54"
[dependencies]
libc = "0.2.0"
rand = "0.3.0"
docopt = "0.8"
serde = "1.0"
serde_derive = "1.0"
log = "0.3"
env_logger = "0.4"
simflash = { path = "simflash" }
mcuboot-sys = { path = "mcuboot-sys" }
ring = { version = "0.12.1", features = ["rsa_signing"] }
untrusted = "0.5"
pem = "0.5"
# The simulator runs very slowly without optimization. A value of 1
# compiles in about half the time, but runs about 5-6 times slower. 2
# and 3 are hardly different in either compile time or performance.
# Use 2 in case that makes the code slightly more debuggable.
[profile.test]
opt-level = 2
[profile.dev]
opt-level = 2