forked from latchset/kryoptic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (33 loc) · 792 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
35
36
37
38
39
40
[package]
name = "kryoptic"
version = "0.1.0"
edition = "2021"
[lib]
name = "kryoptic_pkcs11"
crate-type = ["cdylib"]
[[bin]]
name = "conformance"
path = "src/conformance/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
bindgen = "0.68"
[dependencies]
asn1 = "0.16.0"
bitflags = "2.4.1"
cfg-if = "1.0.0"
data-encoding = "2.4.0"
getrandom = "0.2.10"
hex = "0.4.3"
libc = "0.2.151"
num-bigint = "0.4.4"
num-integer = "0.1.45"
num-traits = "0.2.17"
once_cell = "1.18.0"
serde = { version = "1.0.180", features = ["derive"] }
serde_json = "1.0.104"
uuid = { version = "1.4.1", features = ["v4"] }
zeroize = "1.6.0"
[patch.crates-io]
asn1 = { git = "https://github.com/alex/rust-asn1.git" }
[features]
fips = []