diff --git a/Cargo.lock b/Cargo.lock index 01eedc4..203bd3d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -41,7 +41,9 @@ dependencies = [ [[package]] name = "labels" -version = "0.1.0" +version = "0.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef0d115162498c588b6406a026d2ba545e955720f0ff4230d6b380afe7dd7fd4" dependencies = [ "quote", "syn", @@ -106,7 +108,7 @@ dependencies = [ [[package]] name = "range_bounds_map" -version = "0.0.1" +version = "0.0.2" dependencies = [ "either", "itertools", diff --git a/Cargo.toml b/Cargo.toml index 49d097b..4433b6a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "range_bounds_map" -version = "0.0.1" +version = "0.0.2" authors = ["James Forster "] edition = "2021" description = """ diff --git a/README.md b/README.md index 56be0c9..50cf307 100644 --- a/README.md +++ b/README.md @@ -177,3 +177,5 @@ topic area: [`rangeinclusivemap`]: https://docs.rs/rangemap/latest/rangemap/inclusive_map/struct.RangeInclusiveMap.html# [`rangeinclusive`]: https://doc.rust-lang.org/std/ops/struct.RangeInclusive.html [`ord`]: https://doc.rust-lang.org/std/cmp/trait.Ord.html +[`RangeBoundsMap`]: https://docs.rs/range_bounds_map/latest/range_bounds_map/range_bounds_map/struct.RangeBoundsMap.html +[`RangeBoundsSet`]: https://docs.rs/range_bounds_map/latest/range_bounds_map/range_bounds_set/struct.RangeBoundsSet.html diff --git a/src/lib.rs b/src/lib.rs index e896039..fd1317a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -192,6 +192,8 @@ along with range_bounds_map. If not, see . //! [`rangeinclusivemap`]: https://docs.rs/rangemap/latest/rangemap/inclusive_map/struct.RangeInclusiveMap.html# //! [`rangeinclusive`]: https://doc.rust-lang.org/std/ops/struct.RangeInclusive.html //! [`ord`]: https://doc.rust-lang.org/std/cmp/trait.Ord.html +//! [`RangeBoundsMap`]: https://docs.rs/range_bounds_map/latest/range_bounds_map/range_bounds_map/struct.RangeBoundsMap.html +//! [`RangeBoundsSet`]: https://docs.rs/range_bounds_map/latest/range_bounds_map/range_bounds_set/struct.RangeBoundsSet.html #![feature(is_some_and)] #![feature(let_chains)]