[package]
edition = "2024"
rust-version = "1.85"
name = "threefish"
version = "0.6.0"
authors = ["The Rust-Crypto Project Developers"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Threefish block cipher"
documentation = "https://docs.rs/threefish"
readme = "README.md"
keywords = [
"crypto",
"threefish",
"block-cipher",
]
categories = [
"cryptography",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/RustCrypto/block-ciphers"
[package.metadata.docs.rs]
all-features = true
[features]
default = ["cipher"]
[lib]
name = "threefish"
path = "src/lib.rs"
[[test]]
name = "mod"
path = "tests/mod.rs"
[[bench]]
name = "mod"
path = "benches/mod.rs"
[dependencies.cipher]
version = "0.5"
optional = true
[dependencies.zeroize]
version = "1.6"
optional = true
default-features = false
[dev-dependencies.cipher]
version = "0.5"
features = ["dev"]
[dev-dependencies.hex-literal]
version = "1"