sponges/ascon/Cargo.toml
Tony Arcieri 2a71bae6b2
ascon: 2021 edition (#40)
Since #39 bumped MSRV to 1.59, we can go ahead and do a 2021 edition
upgrade, including README.md in the toplevel rustdoc.
2023-02-25 17:36:18 -07:00

25 lines
684 B
TOML

[package]
name = "ascon"
version = "0.2.0-pre"
description = """
Pure Rust implementation of Ascon, a family of authenticated encryption and
hashing algorithms designed to be lightweight and easy to implement
"""
authors = ["quininer kel <quininer@live.com>", "RustCrypto Developers"]
license = "Apache-2.0 OR MIT"
documentation = "https://docs.rs/ascon"
repository = "https://github.com/RustCrypto/sponges/tree/master/ascon"
keywords = ["crypto", "sponge"]
categories = ["cryptography", "no-std"]
readme = "README.md"
edition = "2021"
rust-version = "1.59"
[features]
default = ["alloc"]
alloc = []
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]