diff --git a/Cargo.toml b/Cargo.toml index b6fa4b9df23c73d61296e08abbcb66522cd82f07..1f156f8e083d2e6bde182f00cef0cf7dc610911a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,11 +9,11 @@ license = "MIT" documentation = "https://pornel.github.io/rust-lcms2/lcms2/" repository = "https://github.com/pornel/rust-lcms2.git" categories = ["multimedia::images", "api-bindings"] -version = "5.0.0" +version = "5.0.1" [dependencies] foreign-types = "0.3.0" -lcms2-sys = "2.4.4" +lcms2-sys = "2.4.7" [features] static = ["lcms2-sys/static"] diff --git a/src/lib.rs b/src/lib.rs index 860846a5a8884aff563f08755f8ff86882a235b3..2073ae15348296ec19dc3585d9e75629438b7af3 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2,6 +2,8 @@ //! //! The main types you need to use in this crate are `Profile` and `Transform` #![allow(dead_code)] +#![doc(html_logo_url = "https://pornel.github.io/rust-lcms2/lcms_logo.png")] +#![doc(html_root_url = "https://pornel.github.io/rust-lcms2")] extern crate lcms2_sys as ffi;