forked from chipsalliance/caliptra-sw
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
31 lines (26 loc) · 968 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
# Licensed under the Apache-2.0 license
[package]
name = "caliptra-fmc"
version = "0.1.0"
edition = "2021"
[dependencies]
caliptra-cpu = { version = "0.1.0", path = "../cpu" }
caliptra-drivers = { path = "../drivers" }
caliptra-error = { version = "0.1.0", path = "../error" , default-features=false}
caliptra-registers = { path = "../registers" }
caliptra-x509 = { version = "0.1.0", path = "../x509" , default-features = false }
caliptra_common = { path = "../common", default-features = false }
caliptra-image-types = { path = "../image/types", default-features = false }
ufmt = "0.2.0"
zerocopy = "0.6.1"
[build-dependencies]
cfg-if = "1.0.0"
[dev-dependencies]
caliptra-builder = { path = "../builder" }
caliptra-hw-model = { path = "../hw-model" }
caliptra-image-types = { path = "../image/types" }
[features]
riscv = ["caliptra-cpu/riscv"]
default = ["std"]
std = ["ufmt/std", "caliptra_common/std"]
emu = ["caliptra_common/emu", "caliptra-drivers/emu"]