fluxencrypt 0.7.3

A high-performance, secure encryption SDK for Rust applications
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 = "2024"
rust-version = "1.94.0"
name = "fluxencrypt"
version = "0.7.3"
authors = [
    "Wyatt Roersma",
    "Claude Code",
    "Codex",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high-performance, secure encryption SDK for Rust applications"
homepage = "https://github.com/ThreatFlux/fluxencrypt"
documentation = "https://docs.rs/fluxencrypt"
readme = "README.md"
keywords = [
    "encryption",
    "cryptography",
    "security",
    "aes",
    "rsa",
]
categories = [
    "cryptography",
    "command-line-utilities",
]
license = "MIT"
repository = "https://github.com/ThreatFlux/fluxencrypt"

[features]
default = [
    "serde",
    "parallel",
]
parallel = ["dep:rayon"]
serde = [
    "dep:serde",
    "dep:serde_json",
]
std = []

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

[[example]]
name = "basic_encryption"
path = "examples/basic_encryption.rs"
required-features = ["serde"]

[[example]]
name = "environment_config"
path = "examples/environment_config.rs"
required-features = ["serde"]

[[example]]
name = "file_encryption"
path = "examples/file_encryption.rs"
required-features = ["serde"]

[[example]]
name = "key_management"
path = "examples/key_management.rs"
required-features = ["serde"]

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

[[bench]]
name = "encryption_benchmarks"
path = "benches/encryption_benchmarks.rs"
harness = false

[dependencies.anyhow]
version = "1.0"

[dependencies.base64]
version = "0.22"

[dependencies.hex]
version = "0.4"

[dependencies.log]
version = "0.4"

[dependencies.num-bigint]
version = "0.4"

[dependencies.num-traits]
version = "0.2"

[dependencies.pkcs8]
version = "0.10"
features = [
    "pkcs5",
    "encryption",
    "pem",
]

[dependencies.rand]
version = "0.8"

[dependencies.rayon]
version = "1.11"
optional = true

[dependencies.ring]
version = "0.17"

[dependencies.rsa]
version = "0.9"

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true

[dependencies.serde_json]
version = "1.0"
optional = true

[dependencies.sha2]
version = "0.10"

[dependencies.thiserror]
version = "2.0"

[dependencies.zeroize]
version = "1.8"
features = ["derive"]

[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]

[dev-dependencies.env_logger]
version = "0.11"

[dev-dependencies.hex]
version = "0.4"

[dev-dependencies.proptest]
version = "1.10"

[dev-dependencies.tempfile]
version = "3.27"