mirror of
https://github.com/emilk/egui.git
synced 2026-06-28 07:23:13 -04:00
<!-- Please read the "Making a PR" section of [`CONTRIBUTING.md`](https://github.com/emilk/egui/blob/master/CONTRIBUTING.md) before opening a Pull Request! * Keep your PR:s small and focused. * The PR title is what ends up in the changelog, so make it descriptive! * If applicable, add a screenshot or gif. * If it is a non-trivial addition, consider adding a demo for it to `egui_demo_lib`, or a new example. * Do NOT open PR:s from your `master` branch, as that makes it hard for maintainers to test and add commits to your PR. * Remember to run `cargo fmt` and `cargo clippy`. * Open the PR as a draft until you have self-reviewed it and run `./scripts/check.sh`. * When you have addressed a PR comment, mark it as resolved. Please be patient! I will review your PR, but my time is limited! --> * Remove references to `glium` backend, because it is deprecated since egui v0.18.0 * [x] I have followed the instructions in the PR template
65 lines
1.7 KiB
TOML
65 lines
1.7 KiB
TOML
[package]
|
|
name = "egui_demo_lib"
|
|
version.workspace = true
|
|
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
|
|
description = "Example library for egui"
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
homepage = "https://github.com/emilk/egui/tree/master/crates/egui_demo_lib"
|
|
license.workspace = true
|
|
readme = "README.md"
|
|
repository = "https://github.com/emilk/egui/tree/master/crates/egui_demo_lib"
|
|
categories = ["gui", "graphics"]
|
|
keywords = ["glow", "egui", "gui", "gamedev"]
|
|
include = [
|
|
"../LICENSE-APACHE",
|
|
"../LICENSE-MIT",
|
|
"**/*.rs",
|
|
"Cargo.toml",
|
|
"data/icon.png",
|
|
]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--generate-link-to-definition"]
|
|
|
|
[lib]
|
|
|
|
|
|
[features]
|
|
default = []
|
|
|
|
chrono = ["egui_extras/datepicker", "dep:chrono"]
|
|
|
|
## Allow serialization using [`serde`](https://docs.rs/serde).
|
|
serde = ["egui/serde", "dep:serde", "egui_extras/serde"]
|
|
|
|
## Enable better syntax highlighting using [`syntect`](https://docs.rs/syntect).
|
|
syntect = ["egui_extras/syntect"]
|
|
|
|
|
|
[dependencies]
|
|
egui = { workspace = true, default-features = false, features = ["color-hex"] }
|
|
egui_extras = { workspace = true, features = ["default"] }
|
|
|
|
unicode_names2 = { version = "0.6.0", default-features = false } # this old version has fewer dependencies
|
|
|
|
#! ### Optional dependencies
|
|
chrono = { version = "0.4", optional = true, features = ["js-sys", "wasmbind"] }
|
|
## Enable this when generating docs.
|
|
document-features = { workspace = true, optional = true }
|
|
serde = { workspace = true, optional = true }
|
|
|
|
|
|
[dev-dependencies]
|
|
criterion.workspace = true
|
|
egui_kittest = { workspace = true, features = ["wgpu", "snapshot"] }
|
|
egui = { workspace = true, features = ["default_fonts"] }
|
|
|
|
[[bench]]
|
|
name = "benchmark"
|
|
harness = false
|