[go: up one dir, main page]

ordermap 0.5.3

A hash table with consistent order and fast iteration.
Documentation
[[bench]]
name = "bench"
path = "benches/bench.rs"

[[bench]]
name = "faststring"
path = "benches/faststring.rs"

[dependencies.arbitrary]
default-features = false
optional = true
version = "1.0"

[dependencies.borsh]
default-features = false
optional = true
version = "1.2"

[dependencies.indexmap]
default-features = false
version = "2.5.0"

[dependencies.quickcheck]
default-features = false
optional = true
version = "1.0"

[dependencies.rayon]
optional = true
version = "1.5.3"

[dependencies.serde]
default-features = false
optional = true
version = "1.0"

[dev-dependencies.fnv]
version = "1.0"

[dev-dependencies.fxhash]
version = "0.2.1"

[dev-dependencies.itertools]
version = "0.13"

[dev-dependencies.lazy_static]
version = "1.3"

[dev-dependencies.quickcheck]
default-features = false
version = "1.0"

[dev-dependencies.rand]
features = ["small_rng"]
version = "0.8"

[dev-dependencies.serde_derive]
version = "1.0"

[features]
arbitrary = ["dep:arbitrary", "indexmap/arbitrary"]
borsh = ["dep:borsh", "indexmap/borsh"]
default = ["std"]
quickcheck = ["dep:quickcheck", "indexmap/quickcheck"]
rayon = ["dep:rayon", "indexmap/rayon"]
serde = ["dep:serde", "indexmap/serde"]
std = ["indexmap/std"]

[lib]
bench = false
name = "ordermap"
path = "src/lib.rs"

[lints.clippy]
style = "allow"

[package]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["data-structures", "no-std"]
description = "A hash table with consistent order and fast iteration."
documentation = "https://docs.rs/ordermap/"
edition = "2021"
keywords = ["hashmap", "no_std"]
license = "Apache-2.0 OR MIT"
name = "ordermap"
readme = "README.md"
repository = "https://github.com/indexmap-rs/ordermap"
rust-version = "1.63"
version = "0.5.3"

[package.metadata.docs.rs]
features = ["arbitrary", "quickcheck", "serde", "borsh", "rayon"]
rustdoc-args = ["--cfg", "docsrs"]

[package.metadata.release]
allow-branch = ["master"]
sign-tag = true
tag-name = "{{version}}"

[profile.bench]
debug = 2

[[test]]
name = "equivalent_trait"
path = "tests/equivalent_trait.rs"

[[test]]
name = "macros_full_path"
path = "tests/macros_full_path.rs"

[[test]]
name = "quick"
path = "tests/quick.rs"

[[test]]
name = "tests"
path = "tests/tests.rs"