Skip to content

Commit fc8674c

Browse files
committed
Don't set html_root_url
The recommendation to set this has been removed from the Rust API guidelines: rust-lang/api-guidelines#230 It used to be used by docs.rs, but docs.rs now unconditionally sets the `--extern-html-root-url` parameter of rustdoc which overrides it, making it no longer needed and superfluous.
1 parent 39dbaea commit fc8674c

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
name = "curve25519-dalek"
33
# Before incrementing:
44
# - update CHANGELOG
5-
# - update html_root_url
65
# - update README if required by semver
76
# - if README was updated, also update module documentation in src/lib.rs
87
version = "4.0.0-pre.5"

src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
#![doc(
2121
html_logo_url = "https://cdn.jsdelivr.net/gh/dalek-cryptography/curve25519-dalek/docs/assets/dalek-logo-clear.png"
2222
)]
23-
#![doc(html_root_url = "https://docs.rs/curve25519-dalek/4.0.0-pre.5")]
2423
#![doc = include_str!("../README.md")]
2524

2625
//------------------------------------------------------------------------

0 commit comments

Comments
 (0)