[package] name = "radicle-ed25519-compact" version = "2.0.3" authors = ["Frank Denis "] edition = "2018" description = "Fork of the `ed25519-compact` crate for Radicle" readme = "README.md" keywords = ["crypto", "ed25519", "x25519", "eddsa", "signature"] repository = "https://github.com/radicle-dev/radicle-ed25519-compact" homepage = "https://github.com/radicle-dev/radicle-ed25519-compact" categories = ["algorithms", "cryptography", "no-std", "wasm"] license = "MIT" [features] default = ["random", "std", "x25519", "pem"] pem = ["ct-codecs"] random = ["getrandom"] traits = ["ed25519"] self-verify = [] blind-keys = [] std = [] opt_size = [] disable-signatures = [] x25519 = [] [dependencies] ct-codecs = { version = "1.1", optional = true } getrandom = { version = "0.2", optional = true } ed25519 = { version = "1.5", optional = true } [dev-dependencies] getrandom = "0.2" ct-codecs = "1.1"