aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-06-10 11:32:14 -0700
committerFuwn <[email protected]>2021-06-10 11:32:14 -0700
commit656c5fe4577df1518d2ae9efa7ee3c2cce92531c (patch)
treeeaa52378eb4b81fadc9225aae84a8fac5a105a09
parentchore(deps): update indirect npm deps (diff)
downloadwhirl-656c5fe4577df1518d2ae9efa7ee3c2cce92531c.tar.xz
whirl-656c5fe4577df1518d2ae9efa7ee3c2cce92531c.zip
fix(global): doc styling for all crates
-rw-r--r--crates/whirl_api/src/lib.rs4
-rw-r--r--crates/whirl_common/src/lib.rs4
-rw-r--r--crates/whirl_config/src/lib.rs4
-rw-r--r--crates/whirl_db/src/lib.rs4
-rw-r--r--crates/whirl_prompt/src/lib.rs4
-rw-r--r--crates/whirl_server/src/lib.rs4
6 files changed, 24 insertions, 0 deletions
diff --git a/crates/whirl_api/src/lib.rs b/crates/whirl_api/src/lib.rs
index df0336f..2380f87 100644
--- a/crates/whirl_api/src/lib.rs
+++ b/crates/whirl_api/src/lib.rs
@@ -20,6 +20,10 @@
)]
#![deny(clippy::all, clippy::nursery, clippy::pedantic)]
#![recursion_limit = "128"]
+#![doc(
+ html_logo_url = "https://raw.githubusercontent.com/Whirlsplash/assets/master/Whirl.png",
+ html_favicon_url = "https://raw.githubusercontent.com/Whirlsplash/assets/master/Whirl.png"
+)]
#[macro_use]
extern crate log;
diff --git a/crates/whirl_common/src/lib.rs b/crates/whirl_common/src/lib.rs
index 82eac48..c33a67d 100644
--- a/crates/whirl_common/src/lib.rs
+++ b/crates/whirl_common/src/lib.rs
@@ -20,6 +20,10 @@
)]
#![deny(clippy::all, clippy::nursery, clippy::pedantic)]
#![recursion_limit = "128"]
+#![doc(
+ html_logo_url = "https://raw.githubusercontent.com/Whirlsplash/assets/master/Whirl.png",
+ html_favicon_url = "https://raw.githubusercontent.com/Whirlsplash/assets/master/Whirl.png"
+)]
pub mod log;
pub mod sort;
diff --git a/crates/whirl_config/src/lib.rs b/crates/whirl_config/src/lib.rs
index 93328ca..93e1876 100644
--- a/crates/whirl_config/src/lib.rs
+++ b/crates/whirl_config/src/lib.rs
@@ -20,6 +20,10 @@
)]
#![deny(clippy::all, clippy::nursery, clippy::pedantic)]
#![recursion_limit = "128"]
+#![doc(
+ html_logo_url = "https://raw.githubusercontent.com/Whirlsplash/assets/master/Whirl.png",
+ html_favicon_url = "https://raw.githubusercontent.com/Whirlsplash/assets/master/Whirl.png"
+)]
#[macro_use]
extern crate serde_derive;
diff --git a/crates/whirl_db/src/lib.rs b/crates/whirl_db/src/lib.rs
index d2c6b33..eae57bd 100644
--- a/crates/whirl_db/src/lib.rs
+++ b/crates/whirl_db/src/lib.rs
@@ -20,6 +20,10 @@
)]
#![deny(clippy::all, clippy::nursery, clippy::pedantic)]
#![recursion_limit = "128"]
+#![doc(
+ html_logo_url = "https://raw.githubusercontent.com/Whirlsplash/assets/master/Whirl.png",
+ html_favicon_url = "https://raw.githubusercontent.com/Whirlsplash/assets/master/Whirl.png"
+)]
#[macro_use]
extern crate diesel;
diff --git a/crates/whirl_prompt/src/lib.rs b/crates/whirl_prompt/src/lib.rs
index 4b82b83..ffb6798 100644
--- a/crates/whirl_prompt/src/lib.rs
+++ b/crates/whirl_prompt/src/lib.rs
@@ -20,6 +20,10 @@
)]
#![deny(clippy::all, clippy::nursery, clippy::pedantic)]
#![recursion_limit = "128"]
+#![doc(
+ html_logo_url = "https://raw.githubusercontent.com/Whirlsplash/assets/master/Whirl.png",
+ html_favicon_url = "https://raw.githubusercontent.com/Whirlsplash/assets/master/Whirl.png"
+)]
mod builtins;
mod structure;
diff --git a/crates/whirl_server/src/lib.rs b/crates/whirl_server/src/lib.rs
index 56995f5..85f0c60 100644
--- a/crates/whirl_server/src/lib.rs
+++ b/crates/whirl_server/src/lib.rs
@@ -20,6 +20,10 @@
)]
#![deny(clippy::all, clippy::nursery, clippy::pedantic)]
#![recursion_limit = "128"]
+#![doc(
+ html_logo_url = "https://raw.githubusercontent.com/Whirlsplash/assets/master/Whirl.png",
+ html_favicon_url = "https://raw.githubusercontent.com/Whirlsplash/assets/master/Whirl.png"
+)]
#[macro_use]
extern crate log;