2023-04-23 17:39:00 +01:00
|
|
|
[package]
|
|
|
|
name = "agb_hashmap"
|
2024-10-02 23:08:04 +01:00
|
|
|
version = "0.21.1"
|
2023-04-23 17:39:00 +01: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-29 21:16:48 +00:00
|
|
|
exclude = ["/benches"]
|
2023-04-23 17:39:00 +01:00
|
|
|
|
2024-05-14 22:35:50 +01:00
|
|
|
[features]
|
|
|
|
allocator_api = []
|
2024-10-30 10:35:48 +00:00
|
|
|
serde = ["dep:serde"]
|
2024-05-14 22:35:50 +01:00
|
|
|
|
2023-04-23 17:39:00 +01:00
|
|
|
[dependencies]
|
|
|
|
rustc-hash = { version = "1", default-features = false }
|
2024-10-30 10:35:48 +00:00
|
|
|
serde = { version = "1", default-features = false, optional = true }
|
2023-04-23 17:39:00 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-04-25 20:22:44 +01:00
|
|
|
rand = { version = "0.8", default-features = false, features = ["small_rng"] }
|
2023-05-10 16:01:16 +01:00
|
|
|
lazy_static = "1.4"
|
2024-09-25 13:44:47 +01:00
|
|
|
quickcheck = "1"
|
2024-10-30 10:56:19 +00:00
|
|
|
serde_json = { version = "1", default-features = false, features = ["alloc"] }
|