2020-12-29 14:57:13 +00:00
|
|
|
[package]
|
|
|
|
name = "eframe"
|
|
|
|
version = "0.6.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", "graphics"]
|
|
|
|
keywords = ["egui", "gui", "gamedev"]
|
|
|
|
include = [ "**/*.rs", "Cargo.toml"]
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
egui = { version = "0.6.0", path = "../egui", features = ["serde"] }
|
|
|
|
epi = { version = "0.6.0", path = "../epi", features = ["serde", "serde_json"] }
|
|
|
|
|
|
|
|
# For compiling natively:
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
2020-12-30 19:56:50 +00:00
|
|
|
egui_glium = { path = "../egui_glium", features = ["http"] }
|
2020-12-29 14:57:13 +00:00
|
|
|
|
|
|
|
# For compiling to web:
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
|
|
egui_web = { path = "../egui_web" }
|