sponges/ascon/Cargo.toml
Tony Arcieri 2e113f5f96
ascon: 2018 edition upgrade, lints, docs (#34)
- Bumps the crate's edition to 2018, which is MSRV-compatible
- Adds a more expansive set of lints
- Adds the `missing_docs` lint, and adds docs where missing
2023-02-11 11:54:59 -07:00

19 lines
610 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 = "2018"
[dependencies]
byteorder = { version = "1.0", default-features = false }