ed25519-compact 0.1.3

A small, self-contained, wasm-friendly Ed25519 implementation
Documentation
[package]
name = "ed25519-compact"
version = "0.1.3"
authors = ["Frank Denis <github@pureftpd.org>"]
edition = "2018"
description = "A small, self-contained, wasm-friendly Ed25519 implementation"
readme = "README.md"
keywords = ["crypto", "ed25519", "eddsa", "signature"]
repository = "https://github.com/jedisct1/rust-ed25519-compact"
homepage = "https://github.com/jedisct1/rust-ed25519-compact"
categories = ["algorithms", "cryptography", "no-std", "wasm"]
license = "ISC"

[features]
default = ["random", "std"]
random = ["getrandom"]
self-verify = []
std = []

[dependencies]
getrandom = { version = "0.1", optional = true }

[dev-dependencies]
getrandom = "0.1"