2019-04-21 08:13:05 +00:00
|
|
|
[package]
|
2020-05-30 08:22:35 +00:00
|
|
|
name = "egui_glium"
|
2021-02-07 16:06:42 +00:00
|
|
|
version = "0.9.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"
|
2020-08-10 17:38:46 +00:00
|
|
|
homepage = "https://github.com/emilk/egui"
|
2020-08-09 15:30:12 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
readme = "README.md"
|
2020-08-10 17:38:46 +00:00
|
|
|
repository = "https://github.com/emilk/egui"
|
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"]
|
|
|
|
include = [ "**/*.rs", "Cargo.toml"]
|
2019-04-21 08:13:05 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2020-04-29 19:58:14 +00:00
|
|
|
clipboard = "0.5"
|
2021-02-07 16:06:42 +00:00
|
|
|
egui = { version = "0.9.0", path = "../egui" }
|
|
|
|
epi = { version = "0.9.0", path = "../epi" }
|
2020-12-16 10:38:36 +00:00
|
|
|
glium = "0.29"
|
2020-04-29 19:58:14 +00:00
|
|
|
webbrowser = "0.5"
|
2020-12-30 19:56:50 +00:00
|
|
|
|
2021-01-04 00:44:02 +00:00
|
|
|
# feature "http":
|
2021-01-04 14:52:10 +00:00
|
|
|
ureq = { version = "2.0", optional = true }
|
2021-01-04 00:44:02 +00:00
|
|
|
|
|
|
|
# feature "persistence":
|
|
|
|
directories-next = { version = "2", optional = true }
|
|
|
|
serde = { version = "1", optional = true }
|
|
|
|
serde_json = { version = "1", optional = true }
|
|
|
|
|
|
|
|
# feature "time"
|
|
|
|
chrono = { version = "0.4", optional = true }
|
|
|
|
|
2020-12-30 19:56:50 +00:00
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
http = ["ureq"]
|
2021-01-04 00:44:02 +00:00
|
|
|
persistence = [
|
|
|
|
"directories-next",
|
2021-01-10 10:37:47 +00:00
|
|
|
"egui/persistence",
|
2021-01-04 00:44:02 +00:00
|
|
|
"epi/serde_json",
|
|
|
|
"epi/serde",
|
|
|
|
"serde_json",
|
|
|
|
"serde",
|
|
|
|
]
|
|
|
|
time = ["chrono"] # for seconds_since_midnight
|