aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig15
1 files changed, 8 insertions, 7 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index c5e821a..9ffae2b 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -1,6 +1,6 @@
[package]
name = "pkcs8"
-version = "0.9.0" # Also update html_root_url in lib.rs when bumping this
+version = "0.10.2"
description = """
Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #8:
Private-Key Information Syntax Specification (RFC 5208), with additional
@@ -13,15 +13,15 @@ categories = ["cryptography", "data-structures", "encoding", "no-std", "parser-i
keywords = ["crypto", "key", "pkcs", "private"]
readme = "README.md"
edition = "2021"
-rust-version = "1.57"
+rust-version = "1.65"
[dependencies]
-der = { version = "0.6", features = ["oid"], path = "../der" }
-spki = { version = "0.6", path = "../spki" }
+der = { version = "0.7", features = ["oid"], path = "../der" }
+spki = { version = "0.7.1", path = "../spki" }
# optional dependencies
rand_core = { version = "0.6", optional = true, default-features = false }
-pkcs5 = { version = "0.5", optional = true, path = "../pkcs5" }
+pkcs5 = { version = "0.7", optional = true, path = "../pkcs5" }
subtle = { version = "2", optional = true, default-features = false }
[dev-dependencies]
@@ -30,13 +30,14 @@ tempfile = "3"
[features]
alloc = ["der/alloc", "der/zeroize", "spki/alloc"]
+std = ["alloc", "der/std", "spki/std"]
+
3des = ["encryption", "pkcs5/3des"]
des-insecure = ["encryption", "pkcs5/des-insecure"]
encryption = ["alloc", "pkcs5/alloc", "pkcs5/pbes2", "rand_core"]
getrandom = ["rand_core/getrandom"]
pem = ["alloc", "der/pem", "spki/pem"]
-sha1 = ["encryption", "pkcs5/sha1"]
-std = ["alloc", "der/std", "spki/std"]
+sha1-insecure = ["encryption", "pkcs5/sha1-insecure"]
[package.metadata.docs.rs]
all-features = true