2023-02-11 10:34:01 -07:00
|
|
|
[package]
|
|
|
|
|
name = "ascon"
|
2023-02-11 11:54:59 -07:00
|
|
|
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"]
|
2023-02-11 10:34:01 -07:00
|
|
|
license = "Apache-2.0 OR MIT"
|
2023-02-11 11:54:59 -07:00
|
|
|
documentation = "https://docs.rs/ascon"
|
|
|
|
|
repository = "https://github.com/RustCrypto/sponges/tree/master/ascon"
|
|
|
|
|
keywords = ["crypto", "sponge"]
|
|
|
|
|
categories = ["cryptography", "no-std"]
|
|
|
|
|
readme = "README.md"
|
2023-02-25 17:36:18 -07:00
|
|
|
edition = "2021"
|
|
|
|
|
rust-version = "1.59"
|
2023-02-11 10:34:01 -07:00
|
|
|
|
2023-02-11 12:28:02 -07:00
|
|
|
[features]
|
|
|
|
|
default = ["alloc"]
|
|
|
|
|
alloc = []
|
|
|
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
|
all-features = true
|
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|