David Brown | de7729e | 2017-01-09 10:41:35 -0700 | [diff] [blame] | 1 | [package] |
| 2 | name = "bootsim" |
| 3 | version = "0.1.0" |
| 4 | authors = ["David Brown <davidb@davidb.org>"] |
David Brown | de7729e | 2017-01-09 10:41:35 -0700 | [diff] [blame] | 5 | |
David Brown | 704ac6f | 2017-07-12 10:14:47 -0600 | [diff] [blame] | 6 | [features] |
| 7 | default = [] |
| 8 | |
| 9 | sig-rsa = ["mcuboot-sys/sig-rsa"] |
| 10 | |
David Brown | de7729e | 2017-01-09 10:41:35 -0700 | [diff] [blame] | 11 | [build-dependencies] |
| 12 | gcc = "0.3.38" |
| 13 | |
| 14 | [dependencies] |
| 15 | libc = "0.2.0" |
| 16 | rand = "0.3.0" |
David Brown | 046a0a6 | 2017-07-12 16:08:22 -0600 | [diff] [blame] | 17 | docopt = "0.8" |
| 18 | serde = "1.0" |
| 19 | serde_derive = "1.0" |
David Brown | 4440af8 | 2017-01-09 12:15:05 -0700 | [diff] [blame] | 20 | log = "0.3" |
David Brown | ccb2a1d | 2017-07-12 15:52:42 -0600 | [diff] [blame] | 21 | env_logger = "0.4" |
David Brown | 2cbc470 | 2017-07-06 14:18:58 -0600 | [diff] [blame] | 22 | simflash = { path = "simflash" } |
David Brown | 704ac6f | 2017-07-12 10:14:47 -0600 | [diff] [blame] | 23 | mcuboot-sys = { path = "mcuboot-sys" } |
David Brown | 7e701d8 | 2017-07-11 13:24:25 -0600 | [diff] [blame] | 24 | ring = { version = "0.11", features = ["rsa_signing"] } |
| 25 | untrusted = "0.5" |
| 26 | pem = "0.4" |
David Brown | de7729e | 2017-01-09 10:41:35 -0700 | [diff] [blame] | 27 | |
| 28 | [profile.test] |
| 29 | opt-level = 1 |