From fb26d4d0fb79d1c2d48905ee943328d74a25013a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Crozet=20S=C3=A9bastien?= Date: Fri, 29 Jan 2021 13:56:40 +0100 Subject: [PATCH] Update the htaml_root_url. --- src/lib.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 12a329be..7b2f08a6 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -15,7 +15,8 @@ Simply add the following to your `Cargo.toml` file: ```.ignore [dependencies] -nalgebra = "0.23" +// TODO: replace the * by the latest version. +nalgebra = "*" ``` @@ -82,7 +83,7 @@ an optimized set of tools for computer graphics and physics. Those features incl #![deny(missing_docs)] #![doc( html_favicon_url = "https://nalgebra.org/img/favicon.ico", - html_root_url = "https://nalgebra.org/rustdoc" + html_root_url = "https://docs.rs/nalgebra/0.24.0" )] #![cfg_attr(not(feature = "std"), no_std)] #![cfg_attr(all(feature = "alloc", not(feature = "std")), feature(alloc))]