From 6d6cda275cbe9330fca9352f46b234f6d8616702 Mon Sep 17 00:00:00 2001 From: dbr Date: Wed, 30 Nov 2022 10:31:02 +1030 Subject: [PATCH] Add docs links to Cargo.toml So docs link shows up nicely on crates.io --- imgui-glium-renderer/Cargo.toml | 1 + imgui-sdl2-support/Cargo.toml | 1 + imgui-sys/Cargo.toml | 1 + imgui-winit-support/Cargo.toml | 1 + imgui/Cargo.toml | 1 + 5 files changed, 5 insertions(+) diff --git a/imgui-glium-renderer/Cargo.toml b/imgui-glium-renderer/Cargo.toml index d1333a8..6338966 100644 --- a/imgui-glium-renderer/Cargo.toml +++ b/imgui-glium-renderer/Cargo.toml @@ -5,6 +5,7 @@ edition = "2018" description = "Glium renderer for the imgui crate" homepage = "https://github.com/imgui-rs/imgui-rs" repository = "https://github.com/imgui-rs/imgui-rs" +documentation = "https://docs.rs/imgui-glium-renderer" license = "MIT/Apache-2.0" categories = ["gui", "rendering"] diff --git a/imgui-sdl2-support/Cargo.toml b/imgui-sdl2-support/Cargo.toml index 1c97a20..c760612 100644 --- a/imgui-sdl2-support/Cargo.toml +++ b/imgui-sdl2-support/Cargo.toml @@ -6,6 +6,7 @@ authors = ["The imgui-rs Developers"] description = "sdl2 support code for the imgui crate" homepage = "https://github.com/imgui-rs/imgui-rs" repository = "https://github.com/imgui-rs/imgui-rs" +documentation = "https://docs.rs/imgui-sdl2-support" license = "MIT/Apache-2.0" categories = ["gui"] diff --git a/imgui-sys/Cargo.toml b/imgui-sys/Cargo.toml index 36603c6..6923859 100644 --- a/imgui-sys/Cargo.toml +++ b/imgui-sys/Cargo.toml @@ -5,6 +5,7 @@ edition = "2018" description = "Raw FFI bindings to dear imgui" homepage = "https://github.com/imgui-rs/imgui-rs" repository = "https://github.com/imgui-rs/imgui-rs" +documentation = "https://docs.rs/imgui-sys" license = "MIT/Apache-2.0" categories = ["gui", "external-ffi-bindings"] build = "build.rs" diff --git a/imgui-winit-support/Cargo.toml b/imgui-winit-support/Cargo.toml index c262845..641565e 100644 --- a/imgui-winit-support/Cargo.toml +++ b/imgui-winit-support/Cargo.toml @@ -5,6 +5,7 @@ edition = "2018" description = "winit support code for the imgui crate" homepage = "https://github.com/imgui-rs/imgui-rs" repository = "https://github.com/imgui-rs/imgui-rs" +documentation = "https://docs.rs/imgui-winit-support" license = "MIT/Apache-2.0" categories = ["gui"] diff --git a/imgui/Cargo.toml b/imgui/Cargo.toml index bed2485..7bbe1a3 100644 --- a/imgui/Cargo.toml +++ b/imgui/Cargo.toml @@ -5,6 +5,7 @@ edition = "2018" description = "High-level Rust bindings to dear imgui" homepage = "https://github.com/imgui-rs/imgui-rs" repository = "https://github.com/imgui-rs/imgui-rs" +documentation = "https://docs.rs/imgui" license = "MIT/Apache-2.0" categories = ["gui", "api-bindings"] readme = "../README.markdown"