-
Notifications
You must be signed in to change notification settings - Fork 172
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (38 loc) · 1.49 KB
/
Cargo.toml
File metadata and controls
43 lines (38 loc) · 1.49 KB
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
[package]
name = "pkcs12"
version = "0.2.0-pre.0"
description = """
Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #12:
Personal Information Exchange Syntax v1.1 (RFC7292)
"""
authors = ["RustCrypto Developers"]
license = "Apache-2.0 OR MIT"
homepage = "https://github.com/RustCrypto/formats/tree/master/pkcs12"
repository = "https://github.com/RustCrypto/formats"
categories = ["cryptography", "encoding", "no-std", "parser-implementations"]
keywords = ["crypto", "key", "pkcs", "private"]
readme = "README.md"
edition = "2024"
rust-version = "1.85"
[dependencies]
der = { version = "0.8.0-rc.10", features = ["alloc", "derive", "oid"], default-features = false }
spki = { version = "0.8.0-rc.4", default-features = false }
x509-cert = { version = "0.3.0-rc.3", default-features = false }
const-oid = { version = "0.10", features = ["db"], default-features = false }
cms = { version = "=0.3.0-pre.1", default-features = false }
# optional dependencies
digest = { version = "0.11.0-rc.5", features = ["alloc"], optional = true }
zeroize = { version = "1.8.1", optional = true, default-features = false }
[dev-dependencies]
hex-literal = "1"
pkcs8 = { version = "0.11.0-rc.8", features = ["pkcs5"] }
pkcs5 = { version = "0.8.0-rc.11", features = ["pbes2", "3des"] }
sha2 = "0.11.0-rc.3"
whirlpool = "0.11.0-rc.3"
[features]
default = ["pem"]
kdf = ["dep:digest", "zeroize/alloc"]
pem = ["der/pem", "x509-cert/pem"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]