discrete_range_map/Cargo.toml

32 lines
935 B
TOML
Raw Normal View History

[package]
2022-11-27 01:24:42 +00:00
name = "range_bounds_map"
version = "0.0.1"
authors = ["James Forster"]
edition = "2021"
description = """
This crate provides `RangeBoundsMap` and `RangeBoundsSet`.
`RangeBoundsMap` is similar to `BTreeMap` except `RangeBoundsMap`
uses any type that implements the `RangeBounds` trait as keys, while
maintaining two invariants:
- No two keys may overlap
- A keys' `start_bound()` <= its `end_bound()`
`RangeBoundsSet` is like `RangeBoundsMap` except it
uses `()` as values, as `BTreeSet` does for `BTreeMap`
"""
documentation = "https://docs.rs/range_bounds_map"
readme = "README.md"
homepage = "https://github.com/ripytide/range_bounds_map"
repository = "https://github.com/ripytide/range_bounds_map"
license = "GPL-3.0-or-later"
keywords = ["data-structures", "map", "data", "library"]
categories = ["data-structures"]
[dependencies]
either = "1.8.0"
2022-11-28 20:59:47 +00:00
ordered-float = "3.4.0"
[dev-dependencies]
ordered-float = "3.4.0"