Add logo to HTML documentation in other crates (#1081)

This commit is contained in:
Michael Morgan 2018-10-19 18:34:32 -05:00 committed by Lucas Kent
parent 9ea527fa67
commit 7a11120350
3 changed files with 6 additions and 0 deletions

View File

@ -7,6 +7,8 @@
// notice may not be copied, modified, or distributed except
// according to those terms.
#![doc(html_logo_url = "https://raw.githubusercontent.com/vulkano-rs/vulkano/master/logo.png")]
#![allow(non_upper_case_globals)]
#![allow(non_snake_case)]
#![allow(non_camel_case_types)]

View File

@ -7,6 +7,8 @@
// notice may not be copied, modified, or distributed except
// according to those terms.
#![doc(html_logo_url = "https://raw.githubusercontent.com/vulkano-rs/vulkano/master/logo.png")]
#![recursion_limit = "1024"]
#[macro_use] extern crate quote;
extern crate shaderc;

View File

@ -1,3 +1,5 @@
#![doc(html_logo_url = "https://raw.githubusercontent.com/vulkano-rs/vulkano/master/logo.png")]
extern crate vulkano;
extern crate winit;