Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Icon for the generated doc #3678

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions diesel/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,7 @@
//! - `with-deprecated`
//! - `32-column-tables`

#![doc(html_logo_url = "https://diesel.rs/assets/images/logo.svg")]
#![cfg_attr(feature = "nightly-error-messages", feature(rustc_attrs))]
#![cfg_attr(feature = "unstable", feature(trait_alias))]
#![cfg_attr(doc_cfg, feature(doc_cfg, doc_auto_cfg))]
Expand Down
1 change: 1 addition & 0 deletions diesel_derives/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#![doc(html_logo_url = "https://diesel.rs/assets/images/logo.svg")]
// Clippy lints
#![allow(
clippy::needless_doctest_main,
Expand Down
1 change: 1 addition & 0 deletions diesel_dynamic_schema/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@
//! You can come ask for help at
//! [gitter.im/diesel-rs/diesel](https://gitter.im/diesel-rs/diesel)

#![doc(html_logo_url = "https://diesel.rs/assets/images/logo.svg")]
// Built-in Lints
#![warn(missing_docs)]

Expand Down
1 change: 1 addition & 0 deletions diesel_migrations/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#![doc(html_logo_url = "https://diesel.rs/assets/images/logo.svg")]
// Built-in Lints
// Clippy lints
#![allow(clippy::needless_pass_by_value, clippy::map_unwrap_or)]
Expand Down
2 changes: 2 additions & 0 deletions diesel_table_macro_syntax/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![doc(html_logo_url = "https://diesel.rs/assets/images/logo.svg")]

use syn::spanned::Spanned;
use syn::Ident;
use syn::MetaNameValue;
Expand Down