fix readme broken hyperlinks

This commit is contained in:
ripytide 2022-12-12 05:21:53 +00:00
parent 6ab6a584b4
commit d2ae7fc9ab
No known key found for this signature in database
GPG Key ID: B2629F9EC7C2FE8C
4 changed files with 9 additions and 3 deletions

6
Cargo.lock generated
View File

@ -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",

View File

@ -1,6 +1,6 @@
[package]
name = "range_bounds_map"
version = "0.0.1"
version = "0.0.2"
authors = ["James Forster <james.forsterer@gmail.com>"]
edition = "2021"
description = """

View File

@ -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

View File

@ -192,6 +192,8 @@ along with range_bounds_map. If not, see <https://www.gnu.org/licenses/>.
//! [`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)]