[package]
edition = "2024"
name = "annihilation"
version = "0.1.0-alpha.2"
authors = ["Jacob V. B. Haap"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Pure Rust implementation of Annihilative Keys, cryptographic key/antikey pairs
bound by proof-of-work and elliptic curve point relationships.
"""
homepage = "https://github.com/jacobhaap/rs-annihilation"
documentation = "https://docs.rs/annihilation"
readme = "README.md"
keywords = [
"crypto",
"proof-of-work",
"kdf",
"curve25519",
]
categories = ["cryptography"]
license = "MIT"
repository = "https://gitlab.com/jacobhaap/rs-annihilation"
[features]
convergent = ["ed25519-dalek"]
default = []
divergent = ["ed25519-dalek"]
[lib]
name = "annihilation"
path = "src/lib.rs"
[dependencies.curve25519-dalek]
version = "4.1.3"
[dependencies.ed25519-dalek]
version = "2.2.0"
optional = true
[dependencies.hmac]
version = "0.12.1"
[dependencies.sha2]
version = "0.10.9"
[dependencies.subtle]
version = "2.6.1"
[dependencies.zeroize]
version = "1.8.2"
features = ["derive"]