egui/crates/egui/Cargo.toml

81 lines
2.9 KiB
TOML
Raw Normal View History

2018-12-30 20:08:29 +00:00
[package]
name = "egui"
2022-12-11 15:59:54 +00:00
version = "0.20.1"
2020-05-30 16:22:33 +00:00
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
2022-02-19 19:51:51 +00:00
description = "An easy-to-use immediate mode GUI that runs on both web and native"
edition = "2021"
rust-version = "1.65"
homepage = "https://github.com/emilk/egui"
2020-05-30 16:22:33 +00:00
license = "MIT OR Apache-2.0"
readme = "../../README.md"
repository = "https://github.com/emilk/egui"
categories = ["gui", "game-development"]
2020-05-30 16:22:33 +00:00
keywords = ["gui", "imgui", "immediate", "portable", "gamedev"]
2022-03-10 13:25:33 +00:00
include = ["../LICENSE-APACHE", "../LICENSE-MIT", "**/*.rs", "Cargo.toml"]
2018-12-30 20:08:29 +00:00
[package.metadata.docs.rs]
all-features = true
2018-12-30 20:08:29 +00:00
[lib]
[features]
default = ["default_fonts"]
## [`bytemuck`](https://docs.rs/bytemuck) enables you to cast [`epaint::Vertex`], [`emath::Vec2`] etc to `&[u8]`.
bytemuck = ["epaint/bytemuck"]
## [`cint`](https://docs.rs/cint) enables interopability with other color libraries.
cint = ["epaint/cint"]
## Enable the [`hex_color`] macro.
color-hex = ["epaint/color-hex"]
## This will automatically detect deadlocks due to double-locking on the same thread.
## If your app freezes, you may want to enable this!
## Only affects [`epaint::mutex::RwLock`] (which egui uses a lot).
deadlock_detection = ["epaint/deadlock_detection"]
## 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 = ["epaint/default_fonts"]
## Enable additional checks if debug assertions are enabled (debug builds).
extra_debug_asserts = ["epaint/extra_debug_asserts"]
## Always enable additional checks.
extra_asserts = ["epaint/extra_asserts"]
## [`mint`](https://docs.rs/mint) enables interopability with other math libraries such as [`glam`](https://docs.rs/glam) and [`nalgebra`](https://docs.rs/nalgebra).
mint = ["epaint/mint"]
## Enable persistence of memory (window positions etc).
persistence = ["serde", "epaint/serde", "ron"]
## Allow serialization using [`serde`](https://docs.rs/serde).
Implement accessibility APIs via AccessKit (#2294) * squash before rebase * Update AccessKit, introducing support for editable spinners on Windows and an important fix for navigation order on macOS * Restore support for increment and decrement actions in DragValue * Avoid VoiceOver race condition bug * fix clippy lint * Tell AccessKit that the default action for a text edit (equivalent to a click) is to set the focus. This matters to some platform adapters. * Refactor InputState functions for AccessKit actions * Support the AccessKit SetValue for DragValue; this is the only way for a Windows AT to programmatically adjust the value * Same for Slider * Properly associate the slider label with both the slider and the drag value * Lazily activate egui's AccessKit support * fix clippy lint * Update AccessKit * More documentation, particularly around lazy activation * Tweak one of the doc comments * See if I can get AccessKit exempted from the 'missing backticks' lint * Make PlatformOutput::accesskit_update an Option * Refactor lazy activation * Refactor node mutation (again) * Eliminate the need for an explicit is_accesskit_active method, at least for now * Fix doc comment * More refactoring of tree construction; don't depend on Arc::get_mut * Override a clippy lint; I seem to have no other choice * Final planned refactor: a more flexible approach to hierarchy * Last AccessKit update for this PR; includes an important macOS DPI fix * Move and document the optional accesskit dependency * Fix comment typo Co-authored-by: Emil Ernerfeldt <emil.ernerfeldt@gmail.com> * reformat * More elegant code for conditionally creating a node Co-authored-by: Emil Ernerfeldt <emil.ernerfeldt@gmail.com> * Set step to 1.0 for all integer sliders * Add doc example for Response::labelled_by * Clarify a TODO comment I left for myself Co-authored-by: Emil Ernerfeldt <emil.ernerfeldt@gmail.com>
2022-12-04 18:17:12 +00:00
serde = ["dep:serde", "epaint/serde", "accesskit?/serde"]
[dependencies]
epaint = { version = "0.20.0", path = "../epaint", default-features = false }
2022-11-07 08:23:45 +00:00
ahash = { version = "0.8.1", default-features = false, features = [
"no-rng", # we don't need DOS-protection, so we let users opt-in to it instead
"std",
] }
nohash-hasher = "0.2"
#! ### Optional dependencies
Implement accessibility APIs via AccessKit (#2294) * squash before rebase * Update AccessKit, introducing support for editable spinners on Windows and an important fix for navigation order on macOS * Restore support for increment and decrement actions in DragValue * Avoid VoiceOver race condition bug * fix clippy lint * Tell AccessKit that the default action for a text edit (equivalent to a click) is to set the focus. This matters to some platform adapters. * Refactor InputState functions for AccessKit actions * Support the AccessKit SetValue for DragValue; this is the only way for a Windows AT to programmatically adjust the value * Same for Slider * Properly associate the slider label with both the slider and the drag value * Lazily activate egui's AccessKit support * fix clippy lint * Update AccessKit * More documentation, particularly around lazy activation * Tweak one of the doc comments * See if I can get AccessKit exempted from the 'missing backticks' lint * Make PlatformOutput::accesskit_update an Option * Refactor lazy activation * Refactor node mutation (again) * Eliminate the need for an explicit is_accesskit_active method, at least for now * Fix doc comment * More refactoring of tree construction; don't depend on Arc::get_mut * Override a clippy lint; I seem to have no other choice * Final planned refactor: a more flexible approach to hierarchy * Last AccessKit update for this PR; includes an important macOS DPI fix * Move and document the optional accesskit dependency * Fix comment typo Co-authored-by: Emil Ernerfeldt <emil.ernerfeldt@gmail.com> * reformat * More elegant code for conditionally creating a node Co-authored-by: Emil Ernerfeldt <emil.ernerfeldt@gmail.com> * Set step to 1.0 for all integer sliders * Add doc example for Response::labelled_by * Clarify a TODO comment I left for myself Co-authored-by: Emil Ernerfeldt <emil.ernerfeldt@gmail.com>
2022-12-04 18:17:12 +00:00
## Exposes detailed accessibility implementation required by platform
## accessibility APIs. Also requires support in the egui integration.
accesskit = { version = "0.8.1", optional = true }
## Enable this when generating docs.
document-features = { version = "0.2", optional = true }
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
ron = { version = "0.8", optional = true }
2022-03-10 13:25:33 +00:00
serde = { version = "1", optional = true, features = ["derive", "rc"] }
# egui doesn't log much, but when it does, it uses [`tracing`](https://docs.rs/tracing).
2022-11-07 08:23:45 +00:00
tracing = { version = "0.1", optional = true, default-features = false, features = [
"std",
] }