kcipher2 0.1.0

An implementation of the KCipher-2 stream cipher
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.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