xeddsa 1.0.2

Implementation of the XEdDSA signature algorithm designed for Signal by Trevor Perrin, et al
Documentation
[package]
name = "xeddsa"
version = "1.0.2"
authors = ["Dominik George <nik@naturalnet.de>"]
description = "Implementation of the XEdDSA signature algorithm designed for Signal by Trevor Perrin, et al"
repository = "https://codeberg.org/SpotNuts/xeddsa"
license = "Apache-2.0"
keywords = ["cryptography", "ed25519", "ecc", "signature", "eddsa"]
categories = ["cryptography"]
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
curve25519-dalek = { version = "4.1.1", optional = true }
derive_more = { version = "0.99.17", default-features = false, features = ["display", "error"] }
ed25519 = "2.2.3"
ed25519-dalek = "2.0.0"
rand = "0.8.5"
sha2 = "0.10.8"
x25519-dalek = { version = "2.0.0", features = ["static_secrets"], optional = true }
zeroize = { version = "1.6.0", features = ["zeroize_derive"] }

[features]
default = ["xed25519"]
xed25519 = ["dep:curve25519-dalek", "dep:x25519-dalek"]