1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2#
3# When uploading crates to the registry Cargo will automatically
4# "normalize" Cargo.toml files for maximal compatibility
5# with all versions of Cargo and also rewrite `path` dependencies
6# to registry (e.g., crates.io) dependencies.
7#
8# If you are reading this file be aware that the original Cargo.toml
9# will likely look very different (and much more reasonable).
10# See Cargo.toml.orig for the original contents.
11
12[package]
13edition = "2018"
14name = "twox-hash"
15version = "1.6.3"
16authors = ["Jake Goulding <[email protected]>"]
17description = "A Rust implementation of the XXHash and XXH3 algorithms"
18documentation = "https://docs.rs/twox-hash/"
19readme = "README.md"
20keywords = [
21    "hash",
22    "hasher",
23    "xxhash",
24    "xxh3",
25]
26categories = ["algorithms"]
27license = "MIT"
28repository = "https://github.com/shepmaster/twox-hash"
29
30[dependencies.cfg-if]
31version = ">= 0.1, < 2"
32default-features = false
33
34[dependencies.digest]
35version = "0.8"
36optional = true
37default-features = false
38package = "digest"
39
40[dependencies.digest_0_10]
41version = "0.10"
42optional = true
43default-features = false
44package = "digest"
45
46[dependencies.digest_0_9]
47version = "0.9"
48optional = true
49default-features = false
50package = "digest"
51
52[dependencies.rand]
53version = ">= 0.3.10, < 0.9"
54optional = true
55
56[dependencies.serde]
57version = "1.0"
58features = ["derive"]
59optional = true
60
61[dependencies.static_assertions]
62version = "1.0"
63default-features = false
64
65[dev-dependencies.serde_json]
66version = "1.0"
67
68[features]
69default = ["std"]
70serialize = ["serde"]
71std = ["rand"]
72