voided-core 0.2.0

Core cryptographic primitives for the Voided encryption library
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 = "voided-core"
version = "0.2.0"
authors = ["Voided Team"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core cryptographic primitives for the Voided encryption library"
readme = "README.md"
keywords = [
    "encryption",
    "cryptography",
    "aead",
    "security",
]
categories = [
    "cryptography",
    "encoding",
]
license = "MIT"
repository = "https://github.com/voided-network/voided"

[features]
backend = [
    "compression",
    "signing",
    "std",
]
browser = [
    "compression",
    "wasm",
]
compression = [
    "brotli",
    "flate2",
]
default = ["backend"]
signing = [
    "ed25519-dalek",
    "p256",
    "rsa",
]
std = []
wasm = [
    "getrandom/js",
    "wasm-bindgen",
]

[lib]
name = "voided_core"
crate-type = [
    "cdylib",
    "rlib",
]
path = "src/lib.rs"

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

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

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

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

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

[dependencies.base64]
version = "0.21"

[dependencies.brotli]
version = "3.3"
optional = true

[dependencies.chacha20poly1305]
version = "0.10"

[dependencies.constant_time_eq]
version = "0.3"

[dependencies.ed25519-dalek]
version = "2.1"
features = ["rand_core"]
optional = true

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

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

[dependencies.hex]
version = "0.4"

[dependencies.hkdf]
version = "0.12"

[dependencies.hmac]
version = "0.12"

[dependencies.p256]
version = "0.13"
features = [
    "ecdsa",
    "ecdh",
]
optional = true

[dependencies.pbkdf2]
version = "0.12"
features = ["simple"]

[dependencies.rand]
version = "0.8"

[dependencies.rsa]
version = "0.9"
optional = true

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

[dependencies.serde_json]
version = "1.0"

[dependencies.sha2]
version = "0.10"

[dependencies.thiserror]
version = "1.0"

[dependencies.wasm-bindgen]
version = "0.2"
optional = true

[dependencies.x25519-dalek]
version = "2.0"

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

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

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

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