Don't set html_root_url (it's not recommended)

This commit is contained in:
Alex Orlenko 2023-04-13 22:44:40 +01:00
parent dc10c80e61
commit f9d1213c4b
No known key found for this signature in database
GPG Key ID: 4C150C250863B96D
2 changed files with 1 additions and 3 deletions

View File

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

View File

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