25 lines
825 B
TOML
25 lines
825 B
TOML
[package]
|
|
name = "range_bounds_map"
|
|
version = "0.3.2"
|
|
authors = ["James Forster <james.forsterer@gmail.com>"]
|
|
edition = "2021"
|
|
description = """
|
|
This crate provides [`RangeBoundsMap`] and [`RangeBoundsSet`], Data
|
|
Structures for storing non-overlapping intervals based of [`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 = "AGPL-3.0-or-later"
|
|
keywords = ["data-structures", "map", "data", "library"]
|
|
categories = ["data-structures"]
|
|
|
|
[dependencies]
|
|
serde = {version = "1.0.148", features = ["derive"]}
|
|
btree_monstrousity = {version ="0.0.4", features = ["btree_drain_filter", "btree_cursors"]}
|
|
either = "1.8.1"
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "1.3.0"
|