discrete_range_map/Cargo.toml

32 lines
910 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`.
2022-12-12 03:58:51 +00:00
`RangeBoundsMap` is an ordered map of non-overlapping [`RangeBounds`]
based on [`BTreeMap`].
2022-12-12 03:58:51 +00:00
`RangeBoundsSet` is an ordered set of non-overlapping [`RangeBounds`]
based on [`RangeBoundsMap`].
"""
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]
either = "1.8.0"
serde = {version = "1.0.148", features = ["derive"]}
itertools = "0.10.5"
2022-12-06 20:30:52 +00:00
labels = {path = "../robot_sweet_shop/labels"}
pretty_assertions = "1.3.0"
[dev-dependencies]
ordered-float = "3.4.0"