2017-01-10 01:41:35 +08:00
|
|
|
[package]
|
|
|
|
name = "bootsim"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["David Brown <davidb@davidb.org>"]
|
2022-04-09 07:20:22 +08:00
|
|
|
edition = "2021"
|
2017-01-10 01:41:35 +08:00
|
|
|
|
2017-07-13 00:14:47 +08:00
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
|
|
|
|
sig-rsa = ["mcuboot-sys/sig-rsa"]
|
2019-05-09 05:51:10 +08:00
|
|
|
sig-rsa3072 = ["mcuboot-sys/sig-rsa3072"]
|
2017-12-05 18:48:34 +08:00
|
|
|
sig-ecdsa = ["mcuboot-sys/sig-ecdsa"]
|
2021-02-20 03:16:48 +08:00
|
|
|
sig-ecdsa-mbedtls = ["mcuboot-sys/sig-ecdsa-mbedtls"]
|
2019-05-25 04:44:49 +08:00
|
|
|
sig-ed25519 = ["mcuboot-sys/sig-ed25519"]
|
2017-09-14 04:18:36 +08:00
|
|
|
overwrite-only = ["mcuboot-sys/overwrite-only"]
|
2019-11-28 21:13:14 +08:00
|
|
|
swap-move = ["mcuboot-sys/swap-move"]
|
2019-02-18 18:50:22 +08:00
|
|
|
validate-primary-slot = ["mcuboot-sys/validate-primary-slot"]
|
2018-09-18 20:04:18 +08:00
|
|
|
enc-rsa = ["mcuboot-sys/enc-rsa"]
|
2021-05-14 23:46:14 +08:00
|
|
|
enc-aes256-rsa = ["mcuboot-sys/enc-aes256-rsa"]
|
2018-09-18 20:04:18 +08:00
|
|
|
enc-kw = ["mcuboot-sys/enc-kw"]
|
2021-05-14 23:46:14 +08:00
|
|
|
enc-aes256-kw = ["mcuboot-sys/enc-aes256-kw"]
|
2019-10-24 18:43:53 +08:00
|
|
|
enc-ec256 = ["mcuboot-sys/enc-ec256"]
|
2021-05-07 06:56:18 +08:00
|
|
|
enc-ec256-mbedtls = ["mcuboot-sys/enc-ec256-mbedtls"]
|
2021-05-14 23:46:14 +08:00
|
|
|
enc-aes256-ec256 = ["mcuboot-sys/enc-aes256-ec256"]
|
2020-04-02 22:20:37 +08:00
|
|
|
enc-x25519 = ["mcuboot-sys/enc-x25519"]
|
2021-05-14 23:46:14 +08:00
|
|
|
enc-aes256-x25519 = ["mcuboot-sys/enc-aes256-x25519"]
|
2018-12-19 03:21:51 +08:00
|
|
|
bootstrap = ["mcuboot-sys/bootstrap"]
|
2019-04-04 11:50:05 +08:00
|
|
|
multiimage = ["mcuboot-sys/multiimage"]
|
2021-05-27 06:33:39 +08:00
|
|
|
ram-load = ["mcuboot-sys/ram-load"]
|
2021-05-27 07:10:47 +08:00
|
|
|
direct-xip = ["mcuboot-sys/direct-xip"]
|
2020-01-14 05:04:01 +08:00
|
|
|
downgrade-prevention = ["mcuboot-sys/downgrade-prevention"]
|
2021-11-25 10:27:22 +08:00
|
|
|
max-align-32 = ["mcuboot-sys/max-align-32"]
|
2017-07-13 00:14:47 +08:00
|
|
|
|
2017-01-10 01:41:35 +08:00
|
|
|
[dependencies]
|
2022-04-09 07:34:10 +08:00
|
|
|
byteorder = "1.4"
|
2020-02-12 05:55:14 +08:00
|
|
|
libc = "0.2"
|
2021-08-20 03:03:39 +08:00
|
|
|
rand = { version = "0.8", features = ["small_rng"] }
|
2020-02-12 05:55:14 +08:00
|
|
|
docopt = "1.1.0"
|
2017-07-13 06:08:22 +08:00
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
2019-01-03 02:53:23 +08:00
|
|
|
log = "0.4"
|
2021-08-20 03:03:39 +08:00
|
|
|
env_logger = "0.9"
|
2017-07-07 04:18:58 +08:00
|
|
|
simflash = { path = "simflash" }
|
2017-07-13 00:14:47 +08:00
|
|
|
mcuboot-sys = { path = "mcuboot-sys" }
|
2020-02-12 05:55:14 +08:00
|
|
|
ring = "0.16.11"
|
2021-08-20 03:03:39 +08:00
|
|
|
untrusted = "0.9"
|
2022-04-09 07:34:10 +08:00
|
|
|
pem = "1.0"
|
2021-08-20 03:03:39 +08:00
|
|
|
cipher = "0.3"
|
|
|
|
aes = { version = "0.7.4", features = ["ctr"] }
|
|
|
|
base64 = "0.13.0"
|
2021-05-14 23:46:14 +08:00
|
|
|
typenum = "1.13.0"
|