[package]
edition = "2021"
name = "age-setup"
version = "0.2.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "a rust library that creates X25519 key pairs and uses age as its foundation and is very easy to use"
readme = "README.md"
license = "MIT"
repository = "https://github.com/neuxdotdev/age-setup.git"
[lib]
name = "age_setup"
path = "src/lib.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[bench]]
name = "keygen"
path = "benches/keygen.rs"
harness = false
[dependencies.age]
version = "0.11.3"
[dependencies.rand]
version = "0.8"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.zeroize]
version = "1.8.2"
[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]