-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
41 lines (34 loc) · 927 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
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "xoofff"
version = "0.1.3"
edition = "2021"
authors = ["Anjan Roy <hello@itzmeanjan.in>"]
description = "Farfalle with Xoodoo: Parallel Permutation-based Cryptography"
documentation = "https://github.com/itzmeanjan/xoofff"
readme = "README.md"
repository = "https://github.com/itzmeanjan/xoofff.git"
license = "MIT"
keywords = ["xoodoo", "farfalle", "deck-function", "permutation", "xoofff"]
categories = ["cryptography"]
exclude = ["/kats"]
[dependencies]
crunchy = "=0.2.2"
[dev-dependencies]
rand = "=0.8.5"
test-case = "=3.3.1"
criterion = "=0.5.1"
hex = "=0.4.3"
[target.'cfg(any(target_arch = "x86", target_arch = "x86_64", target_arch = "aarch64", target_arch = "loongarch64"))'.dev-dependencies]
criterion-cycles-per-byte = "=0.6.0"
[features]
dev = []
simd = []
[lib]
bench = false
[[bench]]
name = "xoodoo"
harness = false
required-features = ["dev"]
[[bench]]
name = "xoofff"
harness = false