-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (35 loc) · 811 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
41
42
43
44
45
46
[package]
name = "example_crypto"
version = "0.1.0"
edition = "2021"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bench]]
name = "keygen"
harness = false
[[bench]]
name = "rand"
harness = false
[[bench]]
name = "sign"
harness = false
[[example]]
name = "client_ca"
path = "examples/client_ca.rs"
[[example]]
name = "client_ca_p12"
path = "examples/client_ca_p12.rs"
[[example]]
name = "openssl_sequoia"
path = "examples/openssl_sequoia.rs"
[dependencies]
anyhow.workspace = true
base64.workspace = true
hex.workspace = true
openssl = { version = "0.10", features = ["vendored"] }
rand.workspace = true
sequoia-openpgp = "1"
tracing.workspace = true
tracing-subscriber.workspace = true
[dev-dependencies]
criterion.workspace = true