threencr 1.0.0

Rust implementation of the 3ncr.org v1 string encryption standard (AES-256-GCM).
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"
rust-version = "1.85"
name = "threencr"
version = "1.0.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust implementation of the 3ncr.org v1 string encryption standard (AES-256-GCM)."
homepage = "https://3ncr.org/"
documentation = "https://docs.rs/threencr"
readme = "README.md"
keywords = [
    "3ncr",
    "encryption",
    "aes-gcm",
    "argon2id",
    "tokens",
]
categories = ["cryptography"]
license = "MIT"
repository = "https://github.com/3ncr/tokencrypt-rust"

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

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

[dependencies.aes-gcm]
version = "0.10"
features = [
    "aes",
    "alloc",
    "getrandom",
]
default-features = false

[dependencies.argon2]
version = "0.5"
features = ["alloc"]
default-features = false

[dependencies.base64]
version = "0.22"
features = ["alloc"]
default-features = false

[dependencies.getrandom]
version = "0.4"

[dependencies.sha3]
version = "0.11"
default-features = false