mirror of
https://github.com/eliasstepanik/imgui-rs.git
synced 2026-01-11 13:38:35 +00:00
29 lines
1.1 KiB
TOML
29 lines
1.1 KiB
TOML
[package]
|
|
name = "imgui-winit-support"
|
|
version = "0.7.1"
|
|
edition = "2018"
|
|
authors = ["The imgui-rs Developers"]
|
|
description = "winit support code for the imgui crate"
|
|
homepage = "https://github.com/imgui-rs/imgui-rs"
|
|
repository = "https://github.com/imgui-rs/imgui-rs"
|
|
license = "MIT/Apache-2.0"
|
|
categories = ["gui"]
|
|
|
|
[dependencies]
|
|
imgui = { version = "0.7.0", path = "../imgui" }
|
|
winit-19 = { version = ">= 0.16, < 0.20", package = "winit", optional = true }
|
|
winit-20 = { version = ">= 0.20, < 0.22", package = "winit", optional = true }
|
|
winit-22 = { version = "0.22", package = "winit", optional = true }
|
|
winit-23 = { version = "0.23", package = "winit", default-features = false, optional = true }
|
|
winit-24 = { version = "0.24", package = "winit", default-features = false, optional = true }
|
|
|
|
[features]
|
|
default = ["winit-24"]
|
|
test = ["winit-23/default", "winit-24/default"]
|
|
|
|
# This is phrased as a negative (unlike most features) so that it needs to be
|
|
# explicitly disabled (and `default-features = false` won't do it). To avoid
|
|
# problems from this we don't expose this in the public API in any way, keeping
|
|
# things additive.
|
|
no-warn-on-multiple = []
|