oxicrypto-cipher 0.1.0

Pure Rust raw block/stream cipher primitives for OxiCrypto (AES single-block ECB, ChaCha20 keystream) used by QUIC header protection
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.89"
name = "oxicrypto-cipher"
version = "0.1.0"
authors = ["COOLJAPAN OU (Team Kitasan)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure Rust raw block/stream cipher primitives for OxiCrypto (AES single-block ECB, ChaCha20 keystream) used by QUIC header protection"
readme = false
keywords = [
    "cryptography",
    "aes",
    "chacha20",
    "quic",
    "cipher",
]
categories = ["cryptography"]
license = "Apache-2.0"
repository = "https://github.com/cool-japan/oxicrypto"

[features]
default = []
std = ["oxicrypto-core/std"]

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

[dependencies.aes]
version = "0.9.1"
default-features = false

[dependencies.chacha20]
version = "0.10.0"
features = ["cipher"]
default-features = false

[dependencies.oxicrypto-core]
version = "0.1.0"