forked from oxidecomputer/offline-keystore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (33 loc) · 977 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
32
33
34
[package]
name = "oks"
version = "0.2.0-pre0"
description = """
A utility and library for managing and interacting with the offline keystore.
"""
edition = "2021"
[dependencies]
anyhow = "1.0.81"
clap = { version = "4.3.24", features = ["derive", "env"] }
env_logger = "0.10.2"
fs_extra = "1.3.0"
hex = { version = "0.4.3", features = ["serde"] }
log = "0.4.21"
num-bigint = "0.4.4"
# p256 v0.13 has a dependency that requires rustc 1.65 but we're pinned
# to 1.64 till offline-keystore-os supports it
p256 = "0.12"
pem-rfc7468 = { version = "0.7.0", features = ["alloc", "std"] }
rand = "0.8.5"
rand_chacha = "0.3.1"
rpassword = "7.3.1"
serde = "1.0.197"
serde_json = "1.0.114"
static_assertions = "1.1.0"
tempfile = "3.10.1"
textwrap = "0.16.1"
thiserror = "1.0.58"
# vsss-rs v3 has a dependency that requires rustc 1.65 but we're pinned
# to 1.64 till offline-keystore-os supports it
vsss-rs = "2.7.1"
yubihsm = { version = "0.41.0", features = ["usb"] }
zeroize = "1.7.0"