-
Notifications
You must be signed in to change notification settings - Fork 20
/
Cargo.toml
37 lines (32 loc) · 983 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
[package]
name = "xxhash-rust"
version = "0.8.14"
authors = ["Douman <[email protected]>"]
edition = "2018"
description = "Implementation of xxhash"
readme = "README.md"
repository = "https://github.com/DoumanAsh/xxhash-rust"
license = "BSL-1.0"
keywords = ["hash", "xxhash", "xxh3", "hasher", "no-std"]
categories = ["algorithms", "no-std::no-alloc"]
include = [
"**/*.rs",
"Cargo.toml",
"README.md",
"LICENSE",
]
[features]
# Enables std::io::Write implementation
std = []
# XXH32 makes sense only on 32bit platforms
xxh32 = [] # Enable xxh32 implementation
const_xxh32 = [] # Enable const xxh32 implementation
xxh64 = [] # Enable xxh64 implementation
const_xxh64 = [] # Enable const xxh64 implementation
xxh3 = [] # Enable xxh3 implementation
const_xxh3 = [] # Enable const xxh3 implementation
[dev-dependencies]
getrandom = "0.2"
xxhash-c-sys = "0.8.6"
[package.metadata.docs.rs]
features = ["xxh32", "const_xxh32", "xxh64", "const_xxh64", "xxh3", "const_xxh3"]