sponges/ascon/Cargo.toml
Luca Bruno a30ba7775c
cargo: point repository metadata to clonable URLs (#77)
This tweaks the `repository` fields in Cargo metadata in order to use the correct (i.e. git clonable) URL.
The existing GitHub webUI URLs for each package have been retained and moved to `homepage` fields.
2024-06-10 07:48:30 -06:00

27 lines
778 B
TOML

[package]
name = "ascon"
version = "0.5.0-pre"
description = "Pure Rust implementation of the Ascon permutation"
authors = [
"Sebastian Ramacher <sebastian.ramacher@ait.ac.at>",
"RustCrypto Developers",
]
license = "Apache-2.0 OR MIT"
documentation = "https://docs.rs/ascon"
homepage = "https://github.com/RustCrypto/sponges/tree/master/ascon"
repository = "https://github.com/RustCrypto/sponges"
keywords = ["Ascon", "crypto", "permutation"]
categories = ["cryptography", "no-std"]
readme = "README.md"
edition = "2021"
rust-version = "1.60"
[dependencies]
zeroize = { version = "1.6.0", default-features = false, optional=true }
[features]
no_unroll = [] # Do not unroll loops for binary size reduction
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]