18 lines
333 B
TOML
18 lines
333 B
TOML
[package]
|
|
name = "hash_test"
|
|
version = "0.1.0"
|
|
authors = ["abbycin <abbytsing@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
hashbrown = "0.14"
|
|
fasthash = "0.4.0"
|
|
rand = "0.8.5"
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = true
|
|
debug = false
|