mirror of
https://github.com/logos-blockchain/sponges.git
synced 2026-07-30 10:33:21 +00:00
- 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
19 lines
610 B
TOML
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 }
|