xeddsa 1.1.0

Implementation of the XEdDSA signature algorithm designed for Signal by Trevor Perrin, et al
Documentation
# 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"
name = "xeddsa"
version = "1.1.0"
authors = ["Dominik George <nik@naturalnet.de>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Implementation of the XEdDSA signature algorithm designed for Signal by Trevor Perrin, et al"
readme = "README.md"
keywords = [
    "cryptography",
    "ed25519",
    "ecc",
    "signature",
    "eddsa",
]
categories = ["cryptography"]
license = "Apache-2.0"
repository = "https://codeberg.org/SpotNuts/xeddsa"

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

[lib]
name = "xeddsa"
path = "src/lib.rs"

[dependencies.curve25519-dalek]
version = "4.1.3"
optional = true

[dependencies.derive_more]
version = "2.1.1"
features = [
    "display",
    "error",
]
default-features = false

[dependencies.ed25519]
version = "2.2.3"

[dependencies.ed25519-dalek]
version = "2.2.0"

[dependencies.rand]
version = "0.10"

[dependencies.sha2]
version = "0.11.0"

[dependencies.x25519-dalek]
version = "2.0.1"
features = ["static_secrets"]
optional = true

[dependencies.zeroize]
version = "1.8.2"
features = ["zeroize_derive"]