forked from RustCrypto/stream-ciphers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (23 loc) · 698 Bytes
/
Cargo.toml
File metadata and controls
27 lines (23 loc) · 698 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "rabbit"
version = "0.5.0-pre"
authors = ["RustCrypto Developers"]
edition = "2024"
rust-version = "1.85"
documentation = "https://docs.rs/rabbit"
readme = "README.md"
repository = "https://github.com/RustCrypto/stream-ciphers"
license = "MIT OR Apache-2.0"
keywords = ["crypto", "rabbit", "stream-cipher", "trait"]
categories = ["cryptography", "no-std"]
description = "Pure Rust implementation of the Rabbit stream cipher"
[dependencies]
cipher = "0.5.0-rc.0"
[dev-dependencies]
cipher = { version = "0.5.0-rc.0", features = ["dev"] }
hex-literal = "1"
[features]
zeroize = ["cipher/zeroize"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]