forked from chipsalliance/caliptra-sw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (48 loc) · 1.57 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
# Licensed under the Apache-2.0 license
[package]
name = "caliptra-rom"
version = "0.1.0"
edition = "2021"
rust-version = "1.70"
[dependencies]
caliptra-drivers = { path = "../../drivers" }
caliptra-kat = { path = "../../kat" }
caliptra-lms-types = { path = "../../lms-types" }
caliptra-x509 = { path = "../../x509", default-features = false }
caliptra-image-types = { path = "../../image/types", default-features = false }
caliptra-image-verify = { path = "../../image/verify", default-features = false }
caliptra_common = { path = "../../common", default-features = false }
caliptra-registers = { path = "../../registers" }
ufmt = "0.2.0"
zerocopy = "0.6.1"
caliptra-error = { version = "0.1.0", path = "../../error", default_features = false }
[build-dependencies]
cfg-if = "1.0.0"
hex = "0.4.3"
[dev-dependencies]
caliptra-builder = { path = "../../builder" }
caliptra-hw-model = { path = "../../hw-model" }
caliptra-image-gen = { path = "../../image/gen" }
caliptra-image-openssl = { path = "../../image/openssl" }
caliptra-image-elf = { path = "../../image/elf" }
caliptra-image-fake-keys = { path = "../../image/fake-keys" }
caliptra-image-types = { path = "../../image/types" }
hex = "0.4.3"
openssl = { version = "0.10", features = ["vendored"] }
memoffset = "0.8.0"
[features]
riscv = []
default = ["std"]
emu = ["caliptra-drivers/emu"]
std = [
"caliptra-x509/std",
"caliptra-image-types/std",
"caliptra-image-verify/std",
"caliptra_common/std",
"ufmt/std",
]
no-fmc = []
fpga_realtime = ["caliptra-drivers/fpga_realtime"]
[[bin]]
name = "asm_tests"
path = "test-fw/asm_tests.rs"