-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (35 loc) · 863 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
42
43
44
[lib]
crate-type = ["lib"]
[package]
name = "wyhash-final4"
description = "The rust implementation of wyhash final4 hash function"
version = "0.2.2"
edition = "2021"
license = "MIT"
repository = "https://github.com/thynson/wyhash-final4.git"
homepage = "https://github.com/thynson/wyhash-final4"
keywords = ["hash", "wyhash"]
[features]
wyhash32 = []
wyhash32condom = []
wyhash64 = []
wyhash64condom = []
std = []
default = ["wyhash32", "wyhash32condom", "wyhash64", "wyhash64condom", "std"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bench]]
name = "bench"
harness = false
[dependencies]
[dev-dependencies]
criterion = "0.4"
[profile.release]
opt-level = 3
codegen-units = 1
lto = 'thin'
overflow-checks = false
[profile.bench]
opt-level = 3
codegen-units = 1
lto = 'thin'
overflow-checks = false