This repository was archived by the owner on Jan 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (42 loc) · 1.24 KB
/
Cargo.toml
File metadata and controls
48 lines (42 loc) · 1.24 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "cyclist"
version = "0.6.3"
authors = ["Coda Hale <coda.hale@gmail.com>"]
edition = "2021"
license = "MIT"
description = "A generic Rust implementation of the Cyclist mode of permutation-based cryptography (e.g. Xoodyak)."
homepage = "https://github.com/codahale/cyclist"
documentation = "https://docs.rs/cyclist/"
keywords = ["crypto", "cyclist", "xoodyak", "duplex", "no-std"]
categories = ["cryptography", "no-std"]
readme = "README.md"
include = ["src/**/*", "benches/**/*", "LICENSE", "README.md"]
[workspace]
members = ["xtask"]
[features]
default = ["std", "keccyak", "xoodyak"]
std = []
keccyak = ["keccak-p"]
xoodyak = ["xoodoo-p"]
[dependencies]
constant_time_eq = "0.2.4"
keccak-p = { version = "0.1.1", optional = true }
xoodoo-p = { version = "0.1.0", optional = true }
[dev-dependencies]
aead = "0.5.1"
aes-gcm = "0.10.1"
blake3 = "1.3.1"
chacha20poly1305 = "0.10.1"
ck-meow = "0.1.0"
criterion = { version = "0.4.0", features = ["html_reports"] }
keccak = "0.1.2"
proptest = "1.0.0"
sha2 = "0.10.6"
sha3 = "0.10.5"
strobe-rs = "0.8.1"
[[bench]]
name = "benchmarks"
harness = false
[package.metadata.release]
pre-release-commit-message = "release: version {{version}}"
tag-message = "release: {{crate_name}} version {{version}}"