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.
78 lines
2.4 KiB
78 lines
2.4 KiB
[package]
|
|
name = "eframe"
|
|
version = "0.17.0"
|
|
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
|
|
description = "egui framework - write GUI apps that compiles to web and/or natively"
|
|
edition = "2021"
|
|
rust-version = "1.56"
|
|
homepage = "https://github.com/emilk/egui/tree/master/eframe"
|
|
license = "MIT OR Apache-2.0"
|
|
readme = "README.md"
|
|
repository = "https://github.com/emilk/egui/tree/master/eframe"
|
|
categories = ["gui", "game-development"]
|
|
keywords = ["egui", "gui", "gamedev"]
|
|
include = ["../LICENSE-APACHE", "../LICENSE-MIT", "**/*.rs", "Cargo.toml"]
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
|
|
[lib]
|
|
|
|
|
|
[features]
|
|
default = ["default_fonts"]
|
|
|
|
# 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"]
|
|
|
|
# Enable saving app state to disk.
|
|
persistence = [
|
|
# we cannot touch egui_glium or egui_glow here due to https://github.com/rust-lang/cargo/issues/8832
|
|
"egui-winit/persistence",
|
|
"egui/persistence",
|
|
"epi/file_storage",
|
|
"epi/persistence",
|
|
]
|
|
|
|
# enable screen reader support (requires `ctx.options().screen_reader = true;`)
|
|
screen_reader = [
|
|
# we cannot touch egui_glium or egui_glow here due to https://github.com/rust-lang/cargo/issues/8832
|
|
"egui-winit/screen_reader",
|
|
"egui_web/screen_reader",
|
|
]
|
|
|
|
dark-light = [ "egui-winit/dark-light"] # detect dark mode system preference
|
|
|
|
|
|
[dependencies]
|
|
egui = { version = "0.17.0", path = "../egui", default-features = false }
|
|
epi = { version = "0.17.0", path = "../epi" }
|
|
|
|
# native:
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
egui_glow = { version = "0.17.0", path = "../egui_glow", default-features = false, features = [
|
|
"clipboard",
|
|
"epi",
|
|
"links",
|
|
"winit",
|
|
] }
|
|
egui-winit = { version = "0.17.0", path = "../egui-winit", default-features = false }
|
|
|
|
# web:
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
egui_web = { version = "0.17.0", path = "../egui_web", default-features = false }
|
|
|
|
|
|
[dev-dependencies]
|
|
# For examples:
|
|
egui_extras = { path = "../egui_extras", features = ["image", "svg"] }
|
|
ehttp = "0.2"
|
|
glow = "0.11"
|
|
image = { version = "0.24", default-features = false, features = [
|
|
"jpeg",
|
|
"png",
|
|
] }
|
|
poll-promise = "0.1"
|
|
rfd = "0.8"
|
|
three-d = { git = "https://github.com/asny/three-d", rev = "fa475673e284e05b2f4e068769dce3ec5bcabc8d", default-features = false } # 2022-03-22
|
|
|