colloid 0.0.1

Crypto layer abstraction for smog.
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"
name = "colloid"
version = "0.0.1"
authors = [
    "Andy Hsu",
    "3261429104atqq.com",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Crypto layer abstraction for smog."
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/andihsu/quiclike"

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

[[example]]
name = "cipher"
path = "examples/cipher.rs"

[[example]]
name = "dh"
path = "examples/dh.rs"

[[example]]
name = "hash"
path = "examples/hash.rs"

[dependencies.aead]
version = "0.5.2"
features = ["bytes"]

[dependencies.blake3]
version = "1.8.2"
features = [
    "rayon",
    "mmap",
]

[dependencies.chacha20poly1305]
version = "0.10.1"

[dependencies.x25519-dalek]
version = "2.0.1"
features = [
    "reusable_secrets",
    "static_secrets",
    "getrandom",
]