sec1 0.8.0-rc.3

Pure Rust implementation of SEC1: Elliptic Curve Cryptography encoding formats including ASN.1 DER-serialized private keys as well as the Elliptic-Curve-Point-to-Octet-String encoding
Documentation
[dependencies.base16ct]
default-features = false
optional = true
version = "0.2"

[dependencies.der]
features = ["oid"]
optional = true
version = "0.8.0-rc.0"

[dependencies.hybrid-array]
default-features = false
optional = true
version = "0.2.0-rc.11"

[dependencies.pkcs8]
default-features = false
optional = true
version = "0.11.0-rc.1"

[dependencies.serdect]
default-features = false
features = ["alloc"]
optional = true
version = "0.3.0-rc.0"

[dependencies.subtle]
default-features = false
optional = true
version = "2"

[dependencies.zeroize]
default-features = false
optional = true
version = "1"

[dev-dependencies.hex-literal]
version = "0.4"

[dev-dependencies.tempfile]
version = "3"

[features]
alloc = ["der?/alloc", "pkcs8?/alloc", "zeroize?/alloc"]
default = ["der", "point"]
der = ["dep:der", "zeroize"]
pem = ["alloc", "der/pem", "pkcs8/pem"]
point = ["dep:base16ct", "dep:hybrid-array"]
serde = ["dep:serdect"]
std = ["alloc", "der?/std"]
zeroize = ["dep:zeroize", "der?/zeroize"]

[lib]
name = "sec1"
path = "src/lib.rs"

[package]
authors = ["RustCrypto Developers"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["cryptography", "data-structures", "encoding", "no-std", "parser-implementations"]
description = """
Pure Rust implementation of SEC1: Elliptic Curve Cryptography encoding formats
including ASN.1 DER-serialized private keys as well as the
Elliptic-Curve-Point-to-Octet-String encoding
"""
edition = "2021"
homepage = "https://github.com/RustCrypto/formats/tree/master/sec1"
keywords = ["crypto", "key", "elliptic-curve", "secg"]
license = "Apache-2.0 OR MIT"
name = "sec1"
readme = "README.md"
repository = "https://github.com/RustCrypto/formats"
rust-version = "1.81"
version = "0.8.0-rc.3"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[[test]]
name = "private_key"
path = "tests/private_key.rs"

[[test]]
name = "traits"
path = "tests/traits.rs"