-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (26 loc) · 927 Bytes
/
Cargo.toml
File metadata and controls
27 lines (26 loc) · 927 Bytes
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
[package]
name = "dice-mfg"
version = "0.3.0"
edition = "2021"
description = "A command line tool for creating and programming device identities for Oxide RoTs."
license = "MPL-2.0"
[dependencies]
anyhow = { workspace = true, features = ["std"] }
chrono = { workspace = true, features = ["clock", "std"] }
clap.workspace = true
const-oid = { version = "0.10.2", features = ["std", "db"] }
corncobs.workspace = true
dice-mfg-msgs = { path = "../dice-mfg-msgs", features = ["std"] }
env_logger.workspace = true
log.workspace = true
pem-rfc7468 = { workspace = true, features = ["alloc", "std"] }
rpassword.workspace = true
serde_json.workspace = true
serialport.workspace = true
sha3.workspace = true
string-error.workspace = true
tempfile.workspace = true
x509-cert = { workspace = true, features = ["pem", "std"] }
yubihsm.workspace = true
zerocopy.workspace = true
zeroize = { workspace = true, features = ["std", "alloc"] }