diff options
author | Alex Orlenko <zxteam@protonmail.com> | 2023-04-13 22:44:40 +0100 |
---|---|---|
committer | Alex Orlenko <zxteam@protonmail.com> | 2023-04-13 22:44:40 +0100 |
commit | f9d1213c4b3bbeaaeaf7420f6f5f9e5f9bfd3fa7 (patch) | |
tree | 0e0de910108ffdb7bd90b3d194b5c184a9f300fc | |
parent | dc10c80e6176f3e37f6911a586eabe73edea4e4c (diff) | |
download | mlua-f9d1213c4b3bbeaaeaf7420f6f5f9e5f9bfd3fa7.zip |
Don't set html_root_url (it's not recommended)
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | src/lib.rs | 2 |
2 files changed, 1 insertions, 3 deletions
@@ -1,6 +1,6 @@ [package] name = "mlua" -version = "0.9.0-beta.1" # remember to update html_root_url and mlua_derive +version = "0.9.0-beta.1" # remember to update mlua_derive authors = ["Aleksandr Orlenko <zxteam@pm.me>", "kyren <catherine@chucklefish.org>"] edition = "2021" repository = "https://github.com/khvzak/mlua" @@ -71,8 +71,6 @@ //! [`serde::Serialize`]: https://docs.serde.rs/serde/ser/trait.Serialize.html //! [`serde::Deserialize`]: https://docs.serde.rs/serde/de/trait.Deserialize.html -// mlua types in rustdoc of other crates get linked to here. -#![doc(html_root_url = "https://docs.rs/mlua/0.9.0-beta.1")] // Deny warnings inside doc tests / examples. When this isn't present, rustdoc doesn't show *any* // warnings at all. #![doc(test(attr(deny(warnings))))] |