[package]
name = "rangemap"
version = "1.5.1"
authors = ["Jeff Parsons <jeff@parsons.io>"]
edition = "2018"
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/jeffparsons/rangemap"
documentation = "https://docs.rs/rangemap"
homepage = "https://github.com/jeffparsons/rangemap"
description = """
Map and set data structures whose keys are stored as ranges.
Contiguous and overlapping ranges that map to the same value are coalesced into a single range.
"""
categories = ["data-structures"]
rust-version = "1.66.0"
[dependencies]
serde = { version = "1", optional = true }
[dev-dependencies]
permutator = "0.4"
criterion = "= 0.3.5"
rand = "0.8"
chrono = "0.4"
rustc_version = "0.4"
serde_json = "1"
proptest = "1.4.0"
test-strategy = "0.3.1"
[features]
serde1 = ["serde"]
nightly = []
const_fn = []
[[bench]]
name = "benches"
harness = false