2019-04-21 08:13:05 +00:00
|
|
|
[package]
|
2020-05-30 08:22:35 +00:00
|
|
|
name = "egui_glium"
|
2021-10-24 14:08:44 +00:00
|
|
|
version = "0.15.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"
|
2019-04-21 08:13:05 +00:00
|
|
|
edition = "2018"
|
2021-09-03 19:12:44 +00:00
|
|
|
homepage = "https://github.com/emilk/egui/tree/master/egui_glium"
|
2020-08-09 15:30:12 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
readme = "README.md"
|
2021-09-03 19:12:44 +00:00
|
|
|
repository = "https://github.com/emilk/egui/tree/master/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
|
|
|
|
|
2019-04-21 08:13:05 +00:00
|
|
|
[dependencies]
|
2021-10-24 14:08:44 +00:00
|
|
|
egui = { version = "0.15.0", path = "../egui", default-features = false, features = ["single_threaded"] }
|
|
|
|
egui-winit = { version = "0.15.0", path = "../egui-winit", default-features = false, features = ["epi"] }
|
|
|
|
epi = { version = "0.15.0", path = "../epi", optional = true }
|
2020-12-30 19:56:50 +00:00
|
|
|
|
2021-12-20 21:44:53 +00:00
|
|
|
glium = "0.31"
|
2021-01-04 00:44:02 +00:00
|
|
|
|
2021-09-05 09:00:45 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
image = { version = "0.23", default-features = false, features = ["png"] }
|
2021-09-28 15:33:28 +00:00
|
|
|
|
2020-12-30 19:56:50 +00:00
|
|
|
[features]
|
2021-10-19 19:40:55 +00:00
|
|
|
default = ["clipboard", "default_fonts", "links", "persistence"]
|
2021-09-28 15:33:28 +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.
|
|
|
|
clipboard = ["egui-winit/clipboard"]
|
2021-04-07 18:14:44 +00:00
|
|
|
|
|
|
|
# If set, egui will use `include_bytes!` to bundle some fonts.
|
|
|
|
# If you plan on specifying your own fonts you may disable this feature.
|
|
|
|
default_fonts = ["egui/default_fonts"]
|
2021-09-28 15:33:28 +00:00
|
|
|
|
|
|
|
# enable opening links in a browser when an egui hyperlink is clicked.
|
|
|
|
links = ["egui-winit/links"]
|
|
|
|
|
2021-01-04 00:44:02 +00:00
|
|
|
persistence = [
|
2021-10-19 19:40:55 +00:00
|
|
|
"egui-winit/persistence",
|
|
|
|
"egui/persistence",
|
|
|
|
"epi", # also implied by the lines below, see https://github.com/rust-lang/cargo/issues/8832
|
|
|
|
"epi/file_storage",
|
|
|
|
"epi/persistence",
|
2021-01-04 00:44:02 +00:00
|
|
|
]
|
2021-09-28 15:33:28 +00:00
|
|
|
|
|
|
|
# experimental support for a screen reader
|
|
|
|
screen_reader = ["egui-winit/screen_reader"]
|