discrete_range_map/Cargo.toml

27 lines
853 B
TOML
Raw Normal View History

[package]
2022-11-27 01:24:42 +00:00
name = "range_bounds_map"
2023-04-10 12:55:20 +01:00
version = "0.2.2"
2022-12-12 04:51:46 +00:00
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"
2022-12-12 03:58:51 +00:00
license = "AGPL-3.0-or-later"
keywords = ["data-structures", "map", "data", "library"]
categories = ["data-structures"]
[dependencies]
serde = {version = "1.0.148", features = ["derive"]}
itertools = "0.10.5"
btree_monstrousity = {version ="0.0.4", features = ["btree_drain_filter"]}
2023-04-05 13:19:58 +01:00
either = "1.8.1"
[dev-dependencies]
ordered-float = "3.4.0"
2023-04-05 12:05:54 +01:00
pretty_assertions = "1.3.0"