2023-04-24 02:39:00 +10:00
|
|
|
[package]
|
|
|
|
name = "agb_hashmap"
|
2023-04-26 06:51:29 +10:00
|
|
|
version = "0.15.0"
|
2023-04-24 02:39:00 +10:00
|
|
|
edition = "2021"
|
|
|
|
license = "MPL-2.0"
|
|
|
|
description = "A simple no_std hashmap implementation intended for use in the `agb` library"
|
|
|
|
repository = "https://github.com/agbrs/agb"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
rustc-hash = { version = "1", default-features = false }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-04-26 05:22:44 +10:00
|
|
|
rand = { version = "0.8", default-features = false, features = ["small_rng"] }
|
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
opt-level = 3
|
|
|
|
debug = true
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
opt-level = 3
|
|
|
|
lto = "fat"
|
|
|
|
debug = true
|
2023-04-26 06:51:29 +10:00
|
|
|
codegen-units = 1
|