diff --git a/README.md b/README.md index 18582ec..4c59594 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,8 @@ https://docs.rs/smol) [![Chat](https://img.shields.io/discord/701824908866617385.svg?logo=discord)]( https://discord.gg/x6m5Vvt) +kitty + A small and fast async runtime. This crate simply re-exports other smaller async crates (see the source). diff --git a/assets/images/logo_fullsize.png b/assets/images/logo_fullsize.png new file mode 100644 index 0000000..3289186 Binary files /dev/null and b/assets/images/logo_fullsize.png differ diff --git a/assets/images/logo_fullsize_transparent.png b/assets/images/logo_fullsize_transparent.png new file mode 100644 index 0000000..05072be Binary files /dev/null and b/assets/images/logo_fullsize_transparent.png differ diff --git a/src/lib.rs b/src/lib.rs index 0214f7a..3513eb3 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -31,6 +31,12 @@ //! [examples]: https://github.com/smol-rs/smol/tree/master/examples //! [get-request]: https://github.com/smol-rs/smol/blob/master/examples/get-request.rs +#![doc( + html_favicon_url = "https://raw.githubusercontent.com/smol-rs/smol/master/assets/images/logo_fullsize_transparent.png" +)] +#![doc( + html_logo_url = "https://raw.githubusercontent.com/smol-rs/smol/master/assets/images/logo_fullsize_transparent.png" +)] #![forbid(unsafe_code)] #![warn(missing_docs, missing_debug_implementations, rust_2018_idioms)]