mirror of https://github.com/emilk/egui.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.2 KiB
39 lines
1.2 KiB
[package]
|
|
name = "eframe"
|
|
version = "0.10.0"
|
|
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
|
|
description = "egui framework - write GUI apps that compiles to web and/or natively"
|
|
edition = "2018"
|
|
homepage = "https://github.com/emilk/egui"
|
|
license = "MIT OR Apache-2.0"
|
|
readme = "README.md"
|
|
repository = "https://github.com/emilk/egui"
|
|
categories = ["gui", "game-development"]
|
|
keywords = ["egui", "gui", "gamedev"]
|
|
include = [
|
|
"../LICENSE-APACHE",
|
|
"../LICENSE-MIT",
|
|
"**/*.rs",
|
|
"Cargo.toml",
|
|
]
|
|
|
|
[lib]
|
|
|
|
[dependencies]
|
|
egui = { version = "0.10.0", path = "../egui" }
|
|
epi = { version = "0.10.0", path = "../epi" }
|
|
|
|
# For compiling natively:
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
egui_glium = { version = "0.10.0", path = "../egui_glium" }
|
|
|
|
# For compiling to web:
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
egui_web = { version = "0.10.0", path = "../egui_web" }
|
|
|
|
[features]
|
|
default = []
|
|
http = ["egui_glium/http", "egui_web/http"]
|
|
persistence = ["epi/persistence", "egui_glium/persistence", "egui_web/persistence"]
|
|
screen_reader = ["egui_glium/screen_reader", "egui_web/screen_reader"] # experimental
|
|
time = ["egui_glium/time"] # for seconds_since_midnight
|
|
|