forked from debris/tiny-keccak
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
30 lines (24 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
[package]
description = "An implementation of the FIPS-202-defined SHA-3 and SHAKE functions."
homepage = "https://github.com/debris/tiny-keccak"
license = "CC0-1.0"
name = "tiny-keccak"
version = "1.4.1"
authors = ["debris <[email protected]>"]
keywords = ["sha3", "sha-3", "keccak", "crypto", "tiny"]
categories = ["cryptography", "no-std"]
[dependencies]
crunchy = "0.1.6"
[profile.dev]
opt-level = 3 # Controls the --opt-level the compiler builds with
debug = false # Controls whether the compiler passes `-g`
[profile.doc]
opt-level = 3 # Controls the --opt-level the compiler builds with
debug = false # Controls whether the compiler passes `-g`
[profile.test]
opt-level = 3 # Controls the --opt-level the compiler builds with
debug = false # Controls whether the compiler passes `-g`
[workspace]
members = ["comparison"]
[badges]
travis-ci = { repository = "debris/tiny-keccak", branch = "master"}