File: Cargo.toml

package info (click to toggle)
rust-coreutils 0.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 505,620 kB
  • sloc: ansic: 103,594; asm: 28,570; sh: 8,910; python: 5,581; makefile: 472; cpp: 97; javascript: 72
file content (93 lines) | stat: -rw-r--r-- 1,989 bytes parent folder | download | duplicates (2)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies
#
# If you believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)

[package]
edition = "2018"
name = "tiny-keccak"
version = "2.0.2"
authors = ["debris <marek.kotewicz@gmail.com>"]
description = "An implementation of Keccak derived functions."
homepage = "https://github.com/debris/tiny-keccak"
keywords = ["hash", "sha3", "keccak", "crypto", "kangarootwelve"]
categories = ["cryptography", "no-std"]
license = "CC0-1.0"
[package.metadata.docs.rs]
all-features = true
[profile.dev]
opt-level = 3
debug = false

[profile.test]
opt-level = 3
debug = false

[[example]]
name = "sha3"
required-features = ["sha3"]

[[test]]
name = "keccak"
required-features = ["keccak"]

[[test]]
name = "cshake"
required-features = ["cshake"]

[[test]]
name = "tuple_hash"
required-features = ["tuple_hash"]

[[test]]
name = "kangaroo"
required-features = ["k12"]

[[test]]
name = "sha3"
required-features = ["sha3"]

[[test]]
name = "shake"
required-features = ["shake"]

[[test]]
name = "kmac"
required-features = ["kmac"]

[[test]]
name = "parallel_hash"
required-features = ["parallel_hash"]

[[bench]]
name = "keccak"
required-features = ["keccak"]

[[bench]]
name = "kangaroo"
required-features = ["k12"]
[dependencies.crunchy]
version = "0.2.2"

[features]
cshake = []
default = []
fips202 = ["keccak", "shake", "sha3"]
k12 = []
keccak = []
kmac = ["cshake"]
parallel_hash = ["cshake"]
sha3 = []
shake = []
sp800 = ["cshake", "kmac", "tuple_hash"]
tuple_hash = ["cshake"]
[badges.travis-ci]
branch = "master"
repository = "debris/tiny-keccak"