[package] name = "nonoverlapping_interval_tree" version = "0.1.5" edition = "2021" authors = ["Daniel Bittman "] repository = "https://github.com/dbittman/non-overlapping-interval-tree.git" homepage = "https://github.com/dbittman/non-overlapping-interval-tree.git" license = "MIT" readme = "README.md" description = "Map data structure keyed on (non-overlapping) ranges that allows lookup of a point within a range. Can be no_std (with use of alloc crate)." keywords = ["map", "no_std", "range", "interval", "tree"] categories = ["data-structures", "no-std"] documentation = "https://docs.rs/nonoverlapping_interval_tree" [dependencies] [features] default = ["std"] std = []