From 921a9d4ef0bd150242624ea97bb3350c086d0d5c Mon Sep 17 00:00:00 2001 From: Jack Mac Date: Fri, 17 Sep 2021 12:42:59 -0400 Subject: [PATCH] noted that the gfx backends are deprecated. They'll be removed from this repo after publishing 0.8.0 --- imgui-gfx-examples/Cargo.toml | 3 +++ imgui-gfx-renderer/Cargo.toml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/imgui-gfx-examples/Cargo.toml b/imgui-gfx-examples/Cargo.toml index 5373cdc..97becf6 100644 --- a/imgui-gfx-examples/Cargo.toml +++ b/imgui-gfx-examples/Cargo.toml @@ -9,6 +9,9 @@ repository = "https://github.com/imgui-rs/imgui-rs" license = "MIT/Apache-2.0" publish = false +[badges] +maintenance = { status = "deprecated" } + [features] opengl = ["imgui-gfx-renderer/opengl"] # FIXME diff --git a/imgui-gfx-renderer/Cargo.toml b/imgui-gfx-renderer/Cargo.toml index a7c7664..4a486b6 100644 --- a/imgui-gfx-renderer/Cargo.toml +++ b/imgui-gfx-renderer/Cargo.toml @@ -14,6 +14,9 @@ opengl = [] directx = [] default = ["opengl"] +[badges] +maintenance = { status = "deprecated" } + [dependencies] gfx = "0.18" imgui = { version = "0.8.0", path = "../imgui" }