| 1 | [package] |
| 2 | name = "foldhash" |
| 3 | version = "0.1.5" |
| 4 | authors = ["Orson Peters <orsonpeters@gmail.com>" ] |
| 5 | license = "Zlib" |
| 6 | repository = "https://github.com/orlp/foldhash" |
| 7 | readme = "README.md" |
| 8 | keywords = ["hash" , "hasher" , "no-std" ] |
| 9 | categories = ["algorithms" , "no-std" ] |
| 10 | description = "A fast, non-cryptographic, minimally DoS-resistant hashing algorithm." |
| 11 | edition = "2021" |
| 12 | exclude = ["benches" , "tools" , "assets" ] |
| 13 | rust-version = "1.60" |
| 14 | |
| 15 | [features] |
| 16 | default = ["std" ] |
| 17 | std = [] |
| 18 | |
| 19 | [dependencies] |
| 20 | |
| 21 | [dev-dependencies] |
| 22 | criterion = "0.5" |
| 23 | hashbrown = "0.14" |
| 24 | uuid = "1.8" |
| 25 | rand = "0.8" |
| 26 | ahash = "0.8" |
| 27 | fxhash = "0.2" |
| 28 | chrono = "0.4" |
| 29 | |
| 30 | [lib] |
| 31 | bench = false |
| 32 | |
| 33 | [[bench]] |
| 34 | name = "bench" |
| 35 | path = "benches/bench.rs" |
| 36 | harness = false |
| 37 | |
| 38 | [[bench]] |
| 39 | name = "avalanche" |
| 40 | path = "benches/avalanche.rs" |
| 41 | harness = false |
| 42 | |
| 43 | [profile.release] |
| 44 | lto = "thin" |
| 45 | |