[package]
edition = "2024"
rust-version = "1.85"
name = "rc6"
version = "0.1.0"
authors = ["RustCrypto Developers"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "RC6 block cipher"
readme = "README.md"
keywords = [
"crypto",
"rc6",
"block-cipher",
]
categories = ["cryptography"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/RustCrypto/block-ciphers"
[features]
zeroize = []
[lib]
name = "rc6"
path = "src/lib.rs"
[[test]]
name = "mod"
path = "tests/mod.rs"
[dependencies.cipher]
version = "0.5"
features = ["zeroize"]
[dev-dependencies.cipher]
version = "0.5"
features = ["dev"]