ironcrypt 0.1.0

A Rust library for secure password hashing, RSA key generation, and managing the encryption and verification of passwords and binary files.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "ironcrypt"
version = "0.1.0"
authors = ["Paterne G. G."]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust library for secure password hashing, RSA key generation, and managing the encryption and verification of passwords and binary files."
documentation = "https://docs.rs/ironcrypt"
readme = "README.md"
keywords = [
    "cryptography",
    "RSA",
    "AES",
    "security",
    "Rust",
]
categories = ["cryptography"]
license = "MIT"
repository = "https://github.com/teamflp/ironcrypt"

[lib]
name = "ironcrypt"
path = "src/lib.rs"

[[bin]]
name = "ironcrypt"
path = "src/main.rs"

[[example]]
name = "basic-usage"
path = "examples/basic-usage.rs"

[[test]]
name = "cli"
path = "tests/cli.rs"

[[test]]
name = "integration_test"
path = "tests/integration_test.rs"

[dependencies.aes-gcm]
version = "0.10.3"

[dependencies.argon2]
version = "0.5.3"

[dependencies.base64]
version = "0.22.1"

[dependencies.cipher]
version = "0.4.4"

[dependencies.clap]
version = "4.5.20"
features = [
    "derive",
    "env",
]

[dependencies.flate2]
version = "1.0.30"

[dependencies.indicatif]
version = "0.18.0"

[dependencies.metrics]
version = "0.24.2"

[dependencies.metrics-exporter-prometheus]
version = "0.17.2"

[dependencies.pkcs8]
version = "0.10.2"
features = ["pem"]

[dependencies.rand_core]
version = "0.9.1"

[dependencies.rsa]
version = "0.9.6"
features = ["pem"]

[dependencies.serde]
version = "1.0.210"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.sha2]
version = "0.10.6"

[dependencies.tar]
version = "0.4.44"

[dependencies.tempfile]
version = "3.20.0"

[dependencies.thiserror]
version = "2.0.12"

[dependencies.unicode-general-category]
version = "1.0.0"

[dependencies.zeroize]
version = "1.8.1"

[dev-dependencies.assert_cmd]
version = "2.0"

[dev-dependencies.predicates]
version = "3.1"