forked from RustCrypto/block-ciphers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
28 lines (24 loc) · 780 Bytes
/
Cargo.toml
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 = "threefish"
version = "0.6.0-pre"
description = "Threefish block cipher"
authors = ["The Rust-Crypto Project Developers"]
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.65"
readme = "README.md"
documentation = "https://docs.rs/threefish"
repository = "https://github.com/RustCrypto/block-ciphers"
keywords = ["crypto", "threefish", "block-cipher"]
categories = ["cryptography", "no-std"]
[dependencies]
cipher = { version = "=0.5.0-pre.2", optional = true }
zeroize = { version = "1.6", optional = true, default-features = false }
[dev-dependencies]
cipher = { version = "=0.5.0-pre.2", features = ["dev"]}
hex-literal = "0.4"
[features]
default = ["cipher"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]