discrete_range_map/Cargo.toml

26 lines
812 B
TOML
Raw Normal View History

[package]
2022-11-27 01:24:42 +00:00
name = "range_bounds_map"
version = "0.1.1"
2022-12-12 04:51:46 +00:00
authors = ["James Forster <james.forsterer@gmail.com>"]
edition = "2021"
description = """
2022-12-12 05:24:29 +00:00
This crate provides `RangeBoundsMap` and `RangeBoundsSet`
2023-01-07 22:29:30 +00:00
Data Structures for storing intervals. Based off 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"
2023-04-02 21:25:50 +01:00
btree_monstousity = {version ="0.0.4", features = ["btree_drain_filter"]}
[dev-dependencies]
ordered-float = "3.4.0"
2023-04-05 12:05:54 +01:00
pretty_assertions = "1.3.0"