dbr 9776ebef90 Remove authors key from Cargo.toml
The field is now optional (as of Rust 1.53) and no longer used by crates.io (as per Rust RFC 3052)
2022-11-30 10:15:38 +10:30

53 lines
1.6 KiB
TOML

[package]
name = "imgui-glow-renderer"
version = "0.9.0"
edition = "2018"
description = "glow renderer 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", "rendering"]
[dependencies]
imgui = { version = "0.9.0", path = "../imgui" }
glow = "0.10.0"
memoffset = "0.6.4"
[dev-dependencies]
glutin = "0.29.1"
imgui-winit-support = { version = "0.9.0", path = "../imgui-winit-support" }
image = "0.23"
[features]
# Features here are used to opt-out of compiling code that depends on certain
# OpenGL features. If the features are enabled, the renderer will check that the
# feature is supported before attempting to use it. Only opt-out of any of these
# if you are certain you will only target platforms that lack the corresponding
# feature.
default = [
"gl_extensions_support",
"debug_message_insert_support",
"bind_vertex_array_support",
"vertex_offset_support",
"clip_origin_support",
"bind_sampler_support",
"polygon_mode_support",
"primitive_restart_support",
]
# Enable checking for OpenGL extensions
gl_extensions_support = []
# Support for `gl.debug_message_insert`
debug_message_insert_support = []
# Support for `glBindVertexArray`
bind_vertex_array_support = []
# Support for `glDrawElementsBaseVertex`
vertex_offset_support = []
# Support for `GL_CLIP_ORIGIN`
clip_origin_support = []
# Support for `glBindSampler`
bind_sampler_support = []
# Support for `glPolygonMode`
polygon_mode_support = []
# Support for `GL_PRIMITIVE_RESTART`
primitive_restart_support = []