Files
cli/vendor/cbc/Cargo.toml

62 lines
1.3 KiB
TOML
Raw Normal View History

# 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.56"
name = "cbc"
version = "0.1.2"
authors = ["RustCrypto Developers"]
description = "Cipher Block Chaining (CBC) block cipher mode of operation"
documentation = "https://docs.rs/cbc"
readme = "README.md"
keywords = [
"crypto",
"block-mode",
"ciphers",
]
categories = [
"cryptography",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/RustCrypto/block-modes"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[dependencies.cipher]
version = "0.4.2"
[dev-dependencies.aes]
version = "0.8"
[dev-dependencies.cipher]
version = "0.4.2"
features = ["dev"]
[dev-dependencies.hex-literal]
version = "0.3.3"
[features]
alloc = ["cipher/alloc"]
block-padding = ["cipher/block-padding"]
default = ["block-padding"]
std = [
"cipher/std",
"alloc",
]
zeroize = ["cipher/zeroize"]