egui/crates/eframe/Cargo.toml

148 lines
4.3 KiB
TOML
Raw Normal View History

[package]
name = "eframe"
version = "0.19.0"
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
description = "egui framework - write GUI apps that compiles to web and/or natively"
edition = "2021"
2022-07-26 14:50:53 +00:00
rust-version = "1.61"
homepage = "https://github.com/emilk/egui/tree/master/crates/eframe"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/emilk/egui/tree/master/crates/eframe"
categories = ["gui", "game-development"]
keywords = ["egui", "gui", "gamedev"]
2022-03-10 13:25:33 +00:00
include = ["../LICENSE-APACHE", "../LICENSE-MIT", "**/*.rs", "Cargo.toml"]
[package.metadata.docs.rs]
all-features = true
[lib]
[features]
default = ["default_fonts", "glow"]
## Detect dark mode system preference using [`dark-light`](https://docs.rs/dark-light).
##
## See also [`NativeOptions::follow_system_theme`] and [`NativeOptions::default_theme`].
dark-light = ["dep:dark-light"]
2022-04-11 08:53:16 +00:00
## 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"]
## Use [`glow`](https://github.com/grovesNL/glow) for painting, via [`egui_glow`](https://github.com/emilk/egui/tree/master/crates/egui_glow).
glow = ["dep:glow", "egui_glow"]
## Enable saving app state to disk.
persistence = [
"directories-next",
"egui-winit/serde",
"egui/persistence",
"ron",
"serde",
]
## Enable profiling with the [`puffin`](https://docs.rs/puffin) crate.
##
## Only enabled on native, because of the low resolution (1ms) of time keeping in browsers.
## `eframe` will call `puffin::GlobalProfiler::lock().new_frame()` for you
puffin = ["dep:puffin", "egui_glow?/puffin"]
## Enable screen reader support (requires `ctx.options().screen_reader = true;`)
screen_reader = [
"egui-winit/screen_reader",
"tts",
]
## Use [`wgpu`](https://docs.rs/wgpu) for painting (via [`egui-wgpu`](https://github.com/emilk/egui/tree/master/crates/egui-wgpu)).
## This overrides the `glow` feature.
wgpu = ["dep:wgpu", "egui-wgpu"]
[dependencies]
egui = { version = "0.19.0", path = "../egui", default-features = false, features = [
"bytemuck",
"tracing",
] }
tracing = { version = "0.1", default-features = false, features = ["std"] }
#! ### Optional dependencies
## Enable this when generating docs.
document-features = { version = "0.2", optional = true }
egui_glow = { version = "0.19.0", path = "../egui_glow", optional = true, default-features = false }
egui-wgpu = { version = "0.19.0", path = "../egui-wgpu", optional = true, features = ["winit"] }
glow = { version = "0.11", optional = true }
ron = { version = "0.8", optional = true, features = ["integer128"] }
serde = { version = "1", optional = true, features = ["derive"] }
wgpu = { version = "0.13", optional = true }
# -------------------------------------------
# native:
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
dark-light = { version = "0.2.1", optional = true }
egui-winit = { version = "0.19.0", path = "../egui-winit", default-features = false, features = ["clipboard", "links"] }
glutin = { version = "0.29.0" }
winit = "0.27.2"
# optional native:
puffin = { version = "0.13", optional = true }
directories-next = { version = "2", optional = true }
# -------------------------------------------
# web:
[target.'cfg(target_arch = "wasm32")'.dependencies]
bytemuck = "1.7"
Update dependencies (#1933) * Update ahash from 0.7 to 0.8 Opt to use ahash::HashMap over ahash::AHashMap * Fix ahash compilation for web * Update ron to 0.8 * Add note about why we cannot update tiny-skia * cargo update Updating crates.io index Updating android_system_properties v0.1.2 -> v0.1.4 Updating anyhow v1.0.58 -> v1.0.62 Updating async-broadcast v0.4.0 -> v0.4.1 Updating async-channel v1.6.1 -> v1.7.1 Updating async-io v1.7.0 -> v1.8.0 Updating async-task v4.2.0 -> v4.3.0 Updating async-trait v0.1.56 -> v0.1.57 Updating backtrace v0.3.65 -> v0.3.66 Updating bit-set v0.5.2 -> v0.5.3 Updating bumpalo v3.10.0 -> v3.11.0 Updating bytemuck v1.10.0 -> v1.12.1 Updating bytemuck_derive v1.1.0 -> v1.2.1 Updating bytes v1.1.0 -> v1.2.1 Updating cast v0.2.7 -> v0.3.0 Updating chrono v0.4.19 -> v0.4.22 Updating clap v3.2.8 -> v3.2.17 Updating clipboard-win v4.4.1 -> v4.4.2 Updating combine v4.6.4 -> v4.6.6 Updating concurrent-queue v1.2.2 -> v1.2.4 Updating criterion v0.3.5 -> v0.3.6 Updating criterion-plot v0.4.4 -> v0.4.5 Updating crossbeam-channel v0.5.5 -> v0.5.6 Updating crossbeam-deque v0.8.1 -> v0.8.2 Updating crossbeam-epoch v0.9.9 -> v0.9.10 Updating crossbeam-utils v0.8.10 -> v0.8.11 Updating document-features v0.2.1 -> v0.2.3 Updating dyn-clone v1.0.6 -> v1.0.9 Removing easy-parallel v3.2.0 Updating either v1.7.0 -> v1.8.0 Updating enum-map v2.1.0 -> v2.4.1 Updating enum-map-derive v0.8.0 -> v0.10.0 Updating event-listener v2.5.2 -> v2.5.3 Updating fastrand v1.7.0 -> v1.8.0 Updating futures-core v0.3.21 -> v0.3.23 Updating futures-io v0.3.21 -> v0.3.23 Updating futures-sink v0.3.21 -> v0.3.23 Updating futures-task v0.3.21 -> v0.3.23 Updating futures-util v0.3.21 -> v0.3.23 Updating gimli v0.26.1 -> v0.26.2 Updating gpu-descriptor v0.2.2 -> v0.2.3 Removing hashbrown v0.11.2 Removing hashbrown v0.12.1 Adding hashbrown v0.12.3 Adding iana-time-zone v0.1.46 Updating image v0.24.2 -> v0.24.3 Updating inplace_it v0.3.3 -> v0.3.4 Updating itoa v1.0.2 -> v1.0.3 Updating js-sys v0.3.58 -> v0.3.59 Updating libc v0.2.126 -> v0.2.132 Updating libm v0.2.2 -> v0.2.5 Removing memmap2 v0.3.1 Removing memmap2 v0.5.4 Adding memmap2 v0.5.7 Removing num-iter v0.1.43 Updating object v0.28.4 -> v0.29.0 Updating once_cell v1.13.0 -> v1.13.1 Updating os_str_bytes v6.1.0 -> v6.3.0 Updating owned_ttf_parser v0.15.0 -> v0.15.1 Removing parking_lot v0.11.2 Removing parking_lot_core v0.8.5 Updating plotters v0.3.1 -> v0.3.3 Updating plotters-backend v0.3.2 -> v0.3.4 Updating plotters-svg v0.3.1 -> v0.3.3 Updating proc-macro-crate v1.1.3 -> v1.2.1 Updating proc-macro2 v1.0.40 -> v1.0.43 Updating quote v1.0.20 -> v1.0.21 Updating redox_syscall v0.2.13 -> v0.2.16 Updating regex v1.5.6 -> v1.6.0 Updating regex-syntax v0.6.26 -> v0.6.27 Updating rfd v0.8.0 -> v0.8.4 Removing rustc_version v0.4.0 Updating ryu v1.0.10 -> v1.0.11 Updating sctk-adwaita v0.4.1 -> v0.4.2 Removing semver v1.0.12 Updating serde v1.0.138 -> v1.0.143 Updating serde_derive v1.0.138 -> v1.0.143 Updating serde_json v1.0.82 -> v1.0.83 Updating serde_repr v0.1.8 -> v0.1.9 Updating slab v0.4.6 -> v0.4.7 Removing smithay-client-toolkit v0.15.4 Updating smithay-clipboard v0.6.5 -> v0.6.6 Updating syn v1.0.98 -> v1.0.99 Updating thiserror v1.0.31 -> v1.0.32 Updating thiserror-impl v1.0.31 -> v1.0.32 Updating time v0.3.11 -> v0.3.13 Adding tiny-skia v0.7.0 Adding tiny-skia-path v0.7.0 Updating tracing v0.1.35 -> v0.1.36 Updating tracing-core v0.1.28 -> v0.1.29 Updating tracing-subscriber v0.3.14 -> v0.3.15 Updating unicode-ident v1.0.1 -> v1.0.3 Updating unicode_names2 v0.5.0 -> v0.5.1 Updating ureq v2.4.0 -> v2.5.0 Updating wasm-bindgen-futures v0.4.31 -> v0.4.32 Updating web-sys v0.3.58 -> v0.3.59 Updating webpki-roots v0.22.3 -> v0.22.4 Updating weezl v0.1.6 -> v0.1.7 Updating wgpu-core v0.13.1 -> v0.13.2 Updating wgpu-hal v0.13.1 -> v0.13.2 Updating wgpu-types v0.13.0 -> v0.13.2 Updating windows v0.32.0 -> v0.37.0 Updating windows_aarch64_msvc v0.32.0 -> v0.37.0 Updating windows_i686_gnu v0.32.0 -> v0.37.0 Updating windows_i686_msvc v0.32.0 -> v0.37.0 Updating windows_x86_64_gnu v0.32.0 -> v0.37.0 Updating windows_x86_64_msvc v0.32.0 -> v0.37.0 Updating x11-dl v2.19.1 -> v2.20.0 Updating zbus_names v2.1.0 -> v2.2.0 Updating zvariant v3.4.1 -> v3.6.0 Updating zvariant_derive v3.4.1 -> v3.6.0 * Add "Unicode-DFS-2016" to deny.toml whitelist
2022-08-19 09:46:38 +00:00
getrandom = { version = "0.2", features = ["js"] } # used by ahash
js-sys = "0.3"
percent-encoding = "2.1"
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
web-sys = { version = "0.3.58", features = [
"BinaryType",
"Blob",
"Clipboard",
"ClipboardEvent",
"CompositionEvent",
"console",
"CssStyleDeclaration",
"DataTransfer",
"DataTransferItem",
"DataTransferItemList",
"Document",
"DomRect",
"DragEvent",
"Element",
"Event",
"EventListener",
"EventTarget",
"ExtSRgb",
"File",
"FileList",
"FocusEvent",
"HtmlCanvasElement",
"HtmlElement",
"HtmlInputElement",
"InputEvent",
"KeyboardEvent",
"Location",
"MediaQueryList",
"MouseEvent",
"Navigator",
"Performance",
"Storage",
"Touch",
"TouchEvent",
"TouchList",
"WebGl2RenderingContext",
"WebglDebugRendererInfo",
"WebGlRenderingContext",
"WheelEvent",
"Window",
] }
# optional
2022-04-30 17:23:44 +00:00
# feature screen_reader
tts = { version = "0.20", optional = true } # Can't use 0.21-0.24 due to compilation problems on linux