Skip to content

Commit 0ae2475

Browse files
ubnt-intrepidtheduke
authored and
theduke
committed
add #[doc(html_root_url)] to all published crates
1 parent 06eee4c commit 0ae2475

File tree

6 files changed

+9
-0
lines changed

6 files changed

+9
-0
lines changed

juniper/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ Juniper has not reached 1.0 yet, thus some API instability should be expected.
8888
[chrono]: https://crates.io/crates/chrono
8989
9090
*/
91+
#![doc(html_root_url = "https://docs.rs/juniper/0.11.1")]
9192
#![warn(missing_docs)]
9293

9394
#[doc(hidden)]

juniper_codegen/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
//! You should not depend on juniper_codegen directly.
55
//! You only need the `juniper` crate.
66
7+
#![doc(html_root_url = "https://docs.rs/juniper_codegen/0.11.1")]
78
#![recursion_limit = "1024"]
89

910
extern crate proc_macro;

juniper_hyper/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#![doc(html_root_url = "https://docs.rs/juniper_hyper/0.2.0")]
2+
13
#[cfg(test)]
24
extern crate reqwest;
35

juniper_iron/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,8 @@ supported.
103103
104104
*/
105105

106+
#![doc(html_root_url = "https://docs.rs/juniper_iron/0.3.0")]
107+
106108
#[cfg(test)]
107109
extern crate iron_test;
108110
#[cfg(test)]

juniper_rocket/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ Check the LICENSE file for details.
3636
3737
*/
3838

39+
#![doc(html_root_url = "https://docs.rs/juniper_rocket/0.2.0")]
40+
3941
#![feature(decl_macro, proc_macro_hygiene)]
4042

4143
use std::error::Error;

juniper_warp/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ Check the LICENSE file for details.
3838

3939
#![deny(missing_docs)]
4040
#![deny(warnings)]
41+
#![doc(html_root_url = "https://docs.rs/juniper_warp/0.2.0")]
4142

4243
use futures::{future::poll_fn, Future};
4344
use juniper::{DefaultScalarValue, InputValue, ScalarRefValue, ScalarValue};

0 commit comments

Comments
 (0)