[package]
edition = "2024"
name = "crypto-async-rs"
version = "0.1.3"
authors = ["Efim Goncharuk <efimster@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance pure Rust cryptographic library with async streaming support"
homepage = "https://gitlab.com/Efimster/sha"
documentation = "https://docs.rs/crypto-async-rs"
readme = "README.md"
keywords = [
"crypto",
"x25519",
"async",
"aes",
"chacha20",
]
categories = [
"cryptography",
"asynchronous",
]
license = "MIT"
repository = "https://gitlab.com/Efimster/sha"
[features]
default = []
[lib]
name = "crypto_async_rs"
path = "src/lib.rs"
[[example]]
name = "hkdf_example"
path = "examples/hkdf_example.rs"
[[example]]
name = "hmac_example"
path = "examples/hmac_example.rs"
[[example]]
name = "sha_async_example"
path = "examples/sha_async_example.rs"
[[example]]
name = "x25519_key_exchange"
path = "examples/x25519_key_exchange.rs"
[[bench]]
name = "aes_gcm_async"
path = "benches/aes_gcm_async.rs"
harness = false
[[bench]]
name = "cha_cha_poly_async"
path = "benches/cha_cha_poly_async.rs"
harness = false
[[bench]]
name = "ecdh_x25519"
path = "benches/ecdh_x25519.rs"
harness = false
[[bench]]
name = "sha_async"
path = "benches/sha_async.rs"
harness = false
[dependencies.futures]
version = "0.3.31"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.rand]
version = "0.8"
[dev-dependencies.tokio]
version = "1.0"
features = ["full"]