2019-04-21 08:13:05 +00:00
|
|
|
[package]
|
2020-05-30 08:22:35 +00:00
|
|
|
name = "egui_glium"
|
2022-08-20 14:44:05 +00:00
|
|
|
version = "0.19.0"
|
2020-05-30 09:04:40 +00:00
|
|
|
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
|
2021-01-17 13:48:59 +00:00
|
|
|
description = "Bindings for using egui natively using the glium library"
|
2021-12-25 18:32:25 +00:00
|
|
|
edition = "2021"
|
2022-07-26 14:50:53 +00:00
|
|
|
rust-version = "1.61"
|
2022-08-20 13:18:02 +00:00
|
|
|
homepage = "https://github.com/emilk/egui/tree/master/crates/egui_glium"
|
2020-08-09 15:30:12 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
readme = "README.md"
|
2022-08-20 13:18:02 +00:00
|
|
|
repository = "https://github.com/emilk/egui/tree/master/crates/egui_glium"
|
2021-01-17 14:16:00 +00:00
|
|
|
categories = ["gui", "game-development"]
|
2020-08-09 15:30:12 +00:00
|
|
|
keywords = ["glium", "egui", "gui", "gamedev"]
|
2021-02-28 19:07:24 +00:00
|
|
|
include = [
|
2021-03-09 17:34:14 +00:00
|
|
|
"../LICENSE-APACHE",
|
|
|
|
"../LICENSE-MIT",
|
2021-02-28 19:07:24 +00:00
|
|
|
"**/*.rs",
|
|
|
|
"Cargo.toml",
|
|
|
|
"src/shader/*.glsl",
|
|
|
|
]
|
2019-04-21 08:13:05 +00:00
|
|
|
|
2021-05-12 18:02:25 +00:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
|
2021-09-28 15:33:28 +00:00
|
|
|
|
2020-12-30 19:56:50 +00:00
|
|
|
[features]
|
2022-04-29 06:17:49 +00:00
|
|
|
default = ["clipboard", "links"]
|
2021-09-28 15:33:28 +00:00
|
|
|
|
2022-06-09 13:27:22 +00:00
|
|
|
## Enable cut/copy/paste to OS clipboard.
|
|
|
|
##
|
|
|
|
## If disabled a clipboard will be simulated so you can still copy/paste within the egui app.
|
2021-09-28 15:33:28 +00:00
|
|
|
clipboard = ["egui-winit/clipboard"]
|
2021-04-07 18:14:44 +00:00
|
|
|
|
2022-06-09 13:27:22 +00:00
|
|
|
## Enable opening links in a browser when an egui hyperlink is clicked.
|
2021-09-28 15:33:28 +00:00
|
|
|
links = ["egui-winit/links"]
|
|
|
|
|
2022-06-09 13:27:22 +00:00
|
|
|
## Experimental support for a screen reader.
|
2021-09-28 15:33:28 +00:00
|
|
|
screen_reader = ["egui-winit/screen_reader"]
|
2022-02-05 10:11:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2022-08-20 14:44:05 +00:00
|
|
|
egui = { version = "0.19.0", path = "../egui", default-features = false, features = [
|
2022-04-09 11:54:47 +00:00
|
|
|
"bytemuck",
|
2022-02-05 10:11:15 +00:00
|
|
|
] }
|
2022-08-20 14:44:05 +00:00
|
|
|
egui-winit = { version = "0.19.0", path = "../egui-winit", default-features = false }
|
2022-02-05 10:11:15 +00:00
|
|
|
|
2022-08-19 09:46:38 +00:00
|
|
|
ahash = "0.8"
|
2022-02-05 10:11:15 +00:00
|
|
|
bytemuck = "1.7"
|
2022-08-14 14:23:46 +00:00
|
|
|
glium = "0.32"
|
2022-02-05 10:11:15 +00:00
|
|
|
|
2022-06-09 15:41:37 +00:00
|
|
|
#! ### Optional dependencies
|
|
|
|
## Enable this when generating docs.
|
|
|
|
document-features = { version = "0.2", optional = true }
|
|
|
|
|
|
|
|
|
2022-02-05 10:11:15 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
image = { version = "0.24", default-features = false, features = ["png"] }
|