63 lines
1.9 KiB
TOML
63 lines
1.9 KiB
TOML
[package]
|
|
name = "egui-winit"
|
|
version = "0.17.0"
|
|
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
|
|
description = "Bindings for using egui with winit"
|
|
edition = "2021"
|
|
rust-version = "1.56"
|
|
homepage = "https://github.com/emilk/egui/tree/master/egui-winit"
|
|
license = "MIT OR Apache-2.0"
|
|
readme = "README.md"
|
|
repository = "https://github.com/emilk/egui/tree/master/egui-winit"
|
|
categories = ["gui", "game-development"]
|
|
keywords = ["winit", "egui", "gui", "gamedev"]
|
|
include = ["../LICENSE-APACHE", "../LICENSE-MIT", "**/*.rs", "Cargo.toml"]
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
|
|
|
|
[features]
|
|
default = ["clipboard", "dark-light", "links"]
|
|
|
|
# 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 = ["copypasta"]
|
|
|
|
# implement bytemuck on most types.
|
|
convert_bytemuck = ["egui/convert_bytemuck"]
|
|
|
|
# Only for `egui_glow` - the official eframe/epi backend.
|
|
epi_backend = ["epi", "glow"]
|
|
|
|
# enable opening links in a browser when an egui hyperlink is clicked.
|
|
links = ["webbrowser"]
|
|
|
|
# experimental support for a screen reader
|
|
screen_reader = ["tts"]
|
|
|
|
persistence = [
|
|
"egui/serialize",
|
|
"serde",
|
|
] # can't add epi/persistence here because of https://github.com/rust-lang/cargo/issues/8832
|
|
serialize = ["egui/serialize", "serde"]
|
|
|
|
|
|
[dependencies]
|
|
egui = { version = "0.17.0", path = "../egui", default-features = false, features = [
|
|
"tracing",
|
|
] }
|
|
instant = { version = "0.1", features = ["wasm-bindgen"] }
|
|
tracing = "0.1"
|
|
winit = "0.26.1"
|
|
|
|
epi = { version = "0.17.0", path = "../epi", optional = true }
|
|
|
|
copypasta = { version = "0.7", optional = true }
|
|
dark-light = { version = "0.2.1", optional = true } # detect dark mode system preference
|
|
glow = { version = "0.11", optional = true }
|
|
serde = { version = "1.0", optional = true, features = ["derive"] }
|
|
webbrowser = { version = "0.6", optional = true }
|
|
|
|
# feature screen_reader
|
|
tts = { version = "0.20", optional = true }
|