chie-crypto 0.2.0

Cryptographic primitives for CHIE Protocol
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.85"
name = "chie-crypto"
version = "0.2.0"
authors = ["COOLJAPAN OU"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cryptographic primitives for CHIE Protocol"
readme = "README.md"
keywords = [
    "chie",
    "cryptography",
    "encryption",
    "signatures",
    "p2p",
]
categories = [
    "cryptography",
    "authentication",
    "no-std::no-alloc",
]
license = "Apache-2.0"
repository = "https://github.com/cool-japan/chie"
resolver = "2"

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

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

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

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

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

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

[dependencies.argon2]
version = "0.5"
features = ["std"]

[dependencies.base64]
version = "0.22"

[dependencies.blake3]
version = "1.8"

[dependencies.chacha20poly1305]
version = "0.10"

[dependencies.chie-shared]
version = "0.2.0"

[dependencies.chrono]
version = "0.4"
features = ["serde"]

[dependencies.curve25519-dalek]
version = "4.1"
features = ["serde"]

[dependencies.ed25519-dalek]
version = "2.2"
features = [
    "rand_core",
    "batch",
]

[dependencies.getrandom]
version = "0.4"

[dependencies.hex]
version = "0.4"

[dependencies.hkdf]
version = "0.12"

[dependencies.hmac]
version = "0.12"

[dependencies.num-bigint]
version = "0.4"
features = [
    "serde",
    "rand",
]

[dependencies.num-prime]
version = "0.5"

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

[dependencies.oxicode]
version = "0.2"
features = [
    "serde",
    "derive",
]

[dependencies.pbkdf2]
version = "0.12"

[dependencies.pqcrypto-dilithium]
version = "0.5"

[dependencies.pqcrypto-kyber]
version = "0.8"

[dependencies.pqcrypto-sphincsplus]
version = "0.7"

[dependencies.pqcrypto-traits]
version = "0.3"

[dependencies.rand]
version = "0.10"

[dependencies.rand_core]
version = "0.10"

[dependencies.rand_core06]
version = "0.6"
package = "rand_core"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.sha2]
version = "0.10"

[dependencies.subtle]
version = "2.6"

[dependencies.thiserror]
version = "2.0"

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

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

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

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