[dependencies.ct-codecs]
optional = true
version = "1.1"
[dependencies.ed25519]
optional = true
version = "2.2"
[dev-dependencies.ct-codecs]
version = "1.1"
[features]
blind-keys = []
default = ["random", "std", "x25519", "pem"]
disable-signatures = []
opt_size = []
pem = ["ct-codecs"]
random = ["getrandom"]
self-verify = []
std = []
traits = ["ed25519"]
x25519 = []
[lib]
name = "ed25519_compact"
path = "src/lib.rs"
[package]
authors = ["Frank Denis <github@pureftpd.org>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["algorithms", "cryptography", "no-std", "wasm"]
description = "A small, self-contained, wasm-friendly Ed25519 implementation"
edition = "2018"
homepage = "https://github.com/jedisct1/rust-ed25519-compact"
keywords = ["crypto", "ed25519", "x25519", "eddsa", "signature"]
license = "MIT"
name = "ed25519-compact"
readme = "README.md"
repository = "https://github.com/jedisct1/rust-ed25519-compact"
version = "2.2.0"
[target.'cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))'.dependencies.getrandom]
features = ["wasm_js"]
optional = true
version = "0.3"
[target.'cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))'.dev-dependencies.getrandom]
features = ["wasm_js"]
version = "0.3"
[target.'cfg(not(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown")))'.dependencies.getrandom]
optional = true
version = "0.3"
[target.'cfg(not(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown")))'.dev-dependencies.getrandom]
version = "0.3"