Skip to content

Commit 66516ab

Browse files
committed
add docs links
1 parent 972b6ab commit 66516ab

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ readme = "README.md"
1010
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)."
1111
keywords = ["map", "no_std", "range", "interval", "tree"]
1212
categories = ["data-structures", "no-std"]
13+
documentation = "https://docs.rs/nonoverlapping_interval_tree"
1314

1415
[dependencies]
1516

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,7 @@ Simple library for a map data structure that contains elements keyed on ranges,
44
overlap. Lookup queries can lookup a specific point in a range, and get back the value for that
55
range.
66

7+
Docs: [docs.rs](https://docs.rs/nonoverlapping_interval_tree)
8+
79
This library supports no_std (but requires core and the alloc crate). To enable no_std, disable
810
default features.

0 commit comments

Comments
 (0)