92 lines
1.9 KiB
TOML
92 lines
1.9 KiB
TOML
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
|
|
#
|
|
# When uploading crates to the registry Cargo will automatically
|
|
# "normalize" Cargo.toml files for maximal compatibility
|
|
# with all versions of Cargo and also rewrite `path` dependencies
|
|
# to registry (e.g., crates.io) dependencies.
|
|
#
|
|
# If you are reading this file be aware that the original Cargo.toml
|
|
# will likely look very different (and much more reasonable).
|
|
# See Cargo.toml.orig for the original contents.
|
|
|
|
[package]
|
|
edition = "2021"
|
|
rust-version = "1.56"
|
|
name = "ed25519"
|
|
version = "1.5.3"
|
|
authors = ["RustCrypto Developers"]
|
|
description = """
|
|
Edwards Digital Signature Algorithm (EdDSA) over Curve25519 (as specified in RFC 8032)
|
|
support library providing signature type definitions and PKCS#8 private key
|
|
decoding/encoding support
|
|
"""
|
|
documentation = "https://docs.rs/ed25519"
|
|
readme = "README.md"
|
|
keywords = [
|
|
"crypto",
|
|
"curve25519",
|
|
"ecc",
|
|
"signature",
|
|
"signing",
|
|
]
|
|
categories = [
|
|
"cryptography",
|
|
"no-std",
|
|
]
|
|
license = "Apache-2.0 OR MIT"
|
|
repository = "https://github.com/RustCrypto/signatures/tree/master/ed25519"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = [
|
|
"--cfg",
|
|
"docsrs",
|
|
]
|
|
|
|
[dependencies.pkcs8]
|
|
version = "0.9"
|
|
optional = true
|
|
|
|
[dependencies.serde]
|
|
version = "1"
|
|
optional = true
|
|
default-features = false
|
|
|
|
[dependencies.serde_bytes_crate]
|
|
version = "0.11"
|
|
optional = true
|
|
package = "serde_bytes"
|
|
|
|
[dependencies.signature]
|
|
version = "1.3.1"
|
|
default-features = false
|
|
|
|
[dependencies.zeroize]
|
|
version = "1"
|
|
optional = true
|
|
default-features = false
|
|
|
|
[dev-dependencies.bincode]
|
|
version = "1"
|
|
|
|
[dev-dependencies.ed25519-dalek]
|
|
version = "1"
|
|
|
|
[dev-dependencies.hex-literal]
|
|
version = "0.3"
|
|
|
|
[dev-dependencies.rand_core]
|
|
version = "0.5"
|
|
features = ["std"]
|
|
|
|
[features]
|
|
alloc = ["pkcs8/alloc"]
|
|
default = ["std"]
|
|
pem = ["pkcs8/pem"]
|
|
serde_bytes = [
|
|
"serde",
|
|
"serde_bytes_crate",
|
|
"std",
|
|
]
|
|
std = ["signature/std"]
|