aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig16
1 files changed, 6 insertions, 10 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index e9e2687..bb49bd8 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -1,6 +1,6 @@
[package]
name = "spki"
-version = "0.7.3"
+version = "0.6.0"
description = """
X.509 Subject Public Key Info (RFC5280) describing public keys as well as their
associated AlgorithmIdentifiers (i.e. OIDs)
@@ -12,28 +12,24 @@ categories = ["cryptography", "data-structures", "encoding", "no-std"]
keywords = ["crypto", "x509"]
readme = "README.md"
edition = "2021"
-rust-version = "1.65"
+rust-version = "1.57"
[dependencies]
-der = { version = "0.7.2", features = ["oid"] }
+der = { version = "0.6", features = ["oid"], path = "../der" }
# Optional dependencies
-arbitrary = { version = "1.2", features = ["derive"], optional = true }
-base64ct = { version = "1", optional = true, default-features = false }
sha2 = { version = "0.10", optional = true, default-features = false }
+base64ct = { version = "1", path = "../base64ct", optional = true, default-features = false }
[dev-dependencies]
-hex-literal = "0.4"
+hex-literal = "0.3"
tempfile = "3"
[features]
alloc = ["base64ct?/alloc", "der/alloc"]
-std = ["der/std", "alloc"]
-
-arbitrary = ["std", "dep:arbitrary", "der/arbitrary"]
-base64 = ["dep:base64ct"]
fingerprint = ["sha2"]
pem = ["alloc", "der/pem"]
+std = ["der/std", "alloc"]
[package.metadata.docs.rs]
all-features = true