From 48c7dd68eef70a6cea704281f0a7c47f5664e59d Mon Sep 17 00:00:00 2001 From: Joonas Javanainen Date: Fri, 31 Mar 2017 18:42:44 +0300 Subject: [PATCH] Add crates.io categories --- Cargo.toml | 1 + imgui-glium-renderer/Cargo.toml | 1 + imgui-sys/Cargo.toml | 1 + 3 files changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 9797e64..0cffd4b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,6 +7,7 @@ readme = "README.markdown" homepage = "https://github.com/gekkio/imgui-rs" repository = "https://github.com/gekkio/imgui-rs" license = "MIT OR Apache-2.0" +categories = ["gui", "api-bindings"] [dependencies] imgui-sys = { path = "imgui-sys" } diff --git a/imgui-glium-renderer/Cargo.toml b/imgui-glium-renderer/Cargo.toml index 0f4bcc2..30a8218 100644 --- a/imgui-glium-renderer/Cargo.toml +++ b/imgui-glium-renderer/Cargo.toml @@ -6,6 +6,7 @@ description = "Glium renderer for imgui-rs" homepage = "https://github.com/gekkio/imgui-rs" repository = "https://github.com/gekkio/imgui-rs" license = "MIT OR Apache-2.0" +categories = ["gui", "rendering"] [dependencies] glium = { version = "0.16", default-features = false } diff --git a/imgui-sys/Cargo.toml b/imgui-sys/Cargo.toml index 996669a..77f5ed1 100644 --- a/imgui-sys/Cargo.toml +++ b/imgui-sys/Cargo.toml @@ -6,6 +6,7 @@ description = "Raw ocornut/imgui bindings for Rust" homepage = "https://github.com/gekkio/imgui-rs" repository = "https://github.com/gekkio/imgui-rs" license = "MIT OR Apache-2.0" +categories = ["gui", "external-ffi-bindings"] build = "build.rs" [dependencies]