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 = "2021" 14rust-version = "1.60" 15name = "foldhash" 16version = "0.1.5" 17authors = ["Orson Peters <orsonpeters@gmail.com>"] 18build = false 19exclude = [ 20 "benches", 21 "tools", 22 "assets", 23] 24autolib = false 25autobins = false 26autoexamples = false 27autotests = false 28autobenches = false 29description = "A fast, non-cryptographic, minimally DoS-resistant hashing algorithm." 30readme = "README.md" 31keywords = [ 32 "hash", 33 "hasher", 34 "no-std", 35] 36categories = [ 37 "algorithms", 38 "no-std", 39] 40license = "Zlib" 41repository = "https://github.com/orlp/foldhash" 42 43[features] 44default = ["std"] 45std = [] 46 47[lib] 48name = "foldhash" 49path = "src/lib.rs" 50bench = false 51 52[dependencies] 53 54[dev-dependencies.ahash] 55version = "0.8" 56 57[dev-dependencies.chrono] 58version = "0.4" 59 60[dev-dependencies.criterion] 61version = "0.5" 62 63[dev-dependencies.fxhash] 64version = "0.2" 65 66[dev-dependencies.hashbrown] 67version = "0.14" 68 69[dev-dependencies.rand] 70version = "0.8" 71 72[dev-dependencies.uuid] 73version = "1.8" 74 75[profile.release] 76lto = "thin" 77