-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (24 loc) · 763 Bytes
/
Copy pathCargo.toml
File metadata and controls
28 lines (24 loc) · 763 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
28
[package]
name = "salsa20"
version = "0.11.0-rc.0"
authors = ["RustCrypto Developers"]
edition = "2024"
rust-version = "1.85"
documentation = "https://docs.rs/salsa20"
readme = "README.md"
repository = "https://github.com/RustCrypto/stream-ciphers"
license = "MIT OR Apache-2.0"
keywords = ["crypto", "stream-cipher", "trait", "xsalsa20"]
categories = ["cryptography", "no-std"]
description = "Pure Rust implementation of the Salsa20 stream cipher"
[dependencies]
cfg-if = "1"
cipher = { version = "0.5.0-rc.0", features = ["stream-wrapper"] }
[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"]