mirror of
https://github.com/logos-blockchain/sponges.git
synced 2026-07-30 10:33:21 +00:00
Since #39 bumped MSRV to 1.59, we can go ahead and do a 2021 edition upgrade, including README.md in the toplevel rustdoc.
25 lines
684 B
TOML
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"]
|