Files
Notes/notes-service/vendor/hashlink/Cargo.toml.orig
T
2026-08-01 16:11:49 +03:00

23 lines
637 B
TOML

[package]
name = "hashlink"
version = "0.11.1"
edition = "2021"
description = "HashMap-like containers that hold their key-value pairs in a user controllable order"
repository = "https://github.com/djc/hashlink"
documentation = "https://docs.rs/hashlink"
readme = "README.md"
keywords = ["data-structures", "no_std"]
license = "MIT OR Apache-2.0"
rust-version = "1.65"
[features]
serde_impl = ["serde"]
[dependencies]
hashbrown = { version = "0.16", default-features = false, features = ["default-hasher"] }
serde = { version = "1.0", default-features = false, optional = true }
[dev-dependencies]
serde_test = "1.0"
rustc-hash = "2"