ecb 0.2.0

Electronic Codebook (ECB) block cipher mode of operation
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 = "ecb"
version = "0.2.0"
authors = [
    "RustCrypto Developers",
    "magic-akari",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Electronic Codebook (ECB) block cipher mode of operation"
documentation = "https://docs.rs/ecb"
readme = "README.md"
keywords = [
    "crypto",
    "block-mode",
    "ciphers",
]
categories = [
    "cryptography",
    "no-std",
]
license = "MIT"
repository = "https://github.com/magic-akari/ecb"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
alloc = ["cipher/alloc"]
block-padding = ["cipher/block-padding"]
default = ["block-padding"]
zeroize = ["cipher/zeroize"]

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

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

[dependencies.cipher]
version = "0.5"

[dev-dependencies.aes]
version = "0.9.0"

[dev-dependencies.cipher]
version = "0.5"
features = ["dev"]

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