2023-04-24 02:39:00 +10:00
|
|
|
[package]
|
|
|
|
name = "agb_hashmap"
|
2024-10-03 08:08:04 +10:00
|
|
|
version = "0.21.1"
|
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"
|
2024-03-30 08:16:48 +11:00
|
|
|
exclude = ["/benches"]
|
2023-04-24 02:39:00 +10:00
|
|
|
|
2024-05-15 07:35:50 +10:00
|
|
|
[features]
|
|
|
|
allocator_api = []
|
|
|
|
|
2023-04-24 02:39:00 +10:00
|
|
|
[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"] }
|
2023-05-11 01:01:16 +10:00
|
|
|
lazy_static = "1.4"
|
2024-09-25 22:44:47 +10:00
|
|
|
quickcheck = "1"
|