[package]
edition = "2024"
rust-version = "1.85.0"
name = "kcipher2"
version = "0.1.0"
build = false
include = [
"/LICENSES",
"/README.md",
"/src",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An implementation of the KCipher-2 stream cipher"
documentation = "https://docs.rs/kcipher2"
readme = "README.md"
keywords = [
"crypto",
"kcipher2",
"stream-cipher",
"trait",
]
categories = [
"cryptography",
"no-std",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/sorairolake/kcipher2"
[package.metadata.docs.rs]
all-features = true
[features]
zeroize = ["cipher/zeroize"]
[lib]
name = "kcipher2"
path = "src/lib.rs"
[dependencies.cipher]
version = "0.5.1"
features = ["stream-wrapper"]
[dev-dependencies.cipher]
version = "0.5.1"
features = ["dev"]
[dev-dependencies.hex-literal]
version = "1.1.0"
[lints.clippy]
multiple_crate_versions = "allow"
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1