recrypt 0.16.0

A pure-Rust implementation of Transform Encryption, a Proxy Re-encryption scheme
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.88.0"
name = "recrypt"
version = "0.16.0"
authors = ["IronCore Labs <info@ironcorelabs.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A pure-Rust implementation of Transform Encryption, a Proxy Re-encryption scheme"
documentation = "https://docs.rs/recrypt"
readme = "README.md"
keywords = [
    "cryptography",
    "proxy-re-encryption",
    "PRE",
    "ECC",
    "transform-encryption",
]
categories = [
    "cryptography",
    "algorithms",
]
license = "AGPL-3.0-only"
repository = "https://github.com/IronCoreLabs/recrypt-rs"

[features]
default = ["u64_backend"]
disable_memlock = []
u32_backend = ["gridiron/limb31"]
u64_backend = ["gridiron/limb62"]
wasm = [
    "u32_backend",
    "clear_on_drop/no_cc",
    "getrandom/wasm_js",
]

[lib]
name = "recrypt"
path = "src/lib.rs"
bench = false

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

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

[dependencies.cfg-if]
version = "1"

[dependencies.clear_on_drop]
version = "0.2"

[dependencies.derivative]
version = "2.1"

[dependencies.ed25519-dalek]
version = "=3.0.0-pre.6"
features = [
    "rand_core",
    "fast",
]
default-features = false

[dependencies.getrandom]
version = "0.4"
optional = true

[dependencies.gridiron]
version = "0.12.2"
default-features = false

[dependencies.hex]
version = "0.4"

[dependencies.lazy_static]
version = "1.4"

[dependencies.log]
version = "0.4"

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

[dependencies.quick-error]
version = "2"

[dependencies.rand]
version = "0.10"

[dependencies.rand_chacha]
version = "0.10"

[dependencies.sha2]
version = "0.10"

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

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

[dev-dependencies.serde_json]
version = "1"

[target.'cfg(all(unix, not(target_arch = "wasm32")))'.dependencies.libc]
version = "0.2"

[target.'cfg(all(windows, not(target_arch = "wasm32")))'.dependencies.winapi]
version = "0.3"
features = [
    "memoryapi",
    "sysinfoapi",
]

[profile.dev]
opt-level = 2
debug = 2

[profile.release]
opt-level = 3
lto = true
codegen-units = 1
debug = 0

[profile.test]
opt-level = 2
debug = 2