egui/crates/egui_demo_lib/Cargo.toml

56 lines
1.7 KiB
TOML
Raw Normal View History

[package]
name = "egui_demo_lib"
version = "0.19.0"
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
description = "Example library for egui"
edition = "2021"
rust-version = "1.65"
homepage = "https://github.com/emilk/egui/tree/master/crates/egui_demo_lib"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/emilk/egui/tree/master/crates/egui_demo_lib"
categories = ["gui", "graphics"]
keywords = ["glium", "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 = []
chrono = ["egui_extras/datepicker", "dep:chrono"]
## Allow serialization using [`serde`](https://docs.rs/serde).
serde = ["egui/serde", "dep:serde"]
## Enable better syntax highlighting using [`syntect`](https://docs.rs/syntect).
syntax_highlighting = ["syntect"]
[dependencies]
egui = { version = "0.19.0", path = "../egui", default-features = false }
egui_extras = { version = "0.19.0", path = "../egui_extras" }
enum-map = { version = "2", features = ["serde"] }
tracing = { version = "0.1", default-features = false, features = ["std"] }
Update crates (#1283) * Update rfd 0.8 -> 0.8 * Update webbrowser 0.5 -> 0.6 * Update unicode_names2 0.4 -> 0.5 * cargo update Updating crates.io index Adding arrayvec v0.7.2 Updating async-lock v2.4.0 -> v2.5.0 Updating autocfg v1.0.1 -> v1.1.0 Updating cc v1.0.72 -> v1.0.73 Updating cfg-expr v0.9.1 -> v0.10.1 Updating core-foundation v0.9.2 -> v0.9.3 Updating crc32fast v1.3.1 -> v1.3.2 Updating crossbeam-epoch v0.9.6 -> v0.9.7 Updating crossbeam-utils v0.8.6 -> v0.8.7 Updating deflate v0.9.1 -> v1.0.0 Removing encoding v0.2.33 Removing encoding-index-japanese v1.20141219.5 Removing encoding-index-korean v1.20141219.5 Removing encoding-index-simpchinese v1.20141219.5 Removing encoding-index-singlebyte v1.20141219.5 Removing encoding-index-tradchinese v1.20141219.5 Removing encoding_index_tests v0.1.4 Updating enum-map v2.0.1 -> v2.0.2 Updating futures-core v0.3.19 -> v0.3.21 Updating futures-io v0.3.19 -> v0.3.21 Updating futures-sink v0.3.19 -> v0.3.21 Updating futures-task v0.3.19 -> v0.3.21 Updating futures-util v0.3.19 -> v0.3.21 Updating gio-sys v0.15.4 -> v0.15.6 Updating glib-sys v0.15.4 -> v0.15.6 Updating gobject-sys v0.15.1 -> v0.15.5 Updating image v0.24.0 -> v0.24.1 Updating kurbo v0.8.0 -> v0.8.3 Updating libc v0.2.117 -> v0.2.119 Updating memmap2 v0.5.2 -> v0.5.3 Adding miniz_oxide v0.5.1 Adding ndk-context v0.1.0 Removing ndk-glue v0.5.0 Removing ndk-glue v0.6.0 Adding ndk-glue v0.5.1 Adding ndk-glue v0.6.1 Updating ntapi v0.3.6 -> v0.3.7 Updating png v0.17.2 -> v0.17.3 Updating proc-macro-crate v1.1.0 -> v1.1.2 Updating rand v0.8.4 -> v0.8.5 Removing rand_hc v0.3.1 Updating rustls v0.20.2 -> v0.20.4 Updating semver v1.0.4 -> v1.0.5 Updating serde_json v1.0.78 -> v1.0.79 Updating system-deps v6.0.1 -> v6.0.2 Updating tracing v0.1.30 -> v0.1.31 Updating tracing-subscriber v0.3.7 -> v0.3.9 Updating tts v0.20.2 -> v0.20.3 Removing windows v0.30.0 Removing windows_aarch64_msvc v0.30.0 Removing windows_i686_gnu v0.30.0 Removing windows_i686_msvc v0.30.0 Removing windows_x86_64_gnu v0.30.0 Removing windows_x86_64_msvc v0.30.0
2022-02-21 14:40:25 +00:00
unicode_names2 = { version = "0.5.0", default-features = false }
2021-01-01 16:11:05 +00:00
#! ### Optional dependencies
chrono = { version = "0.4", optional = true, features = ["js-sys", "wasmbind"] }
## Enable this when generating docs.
document-features = { version = "0.2", optional = true }
2022-03-10 13:25:33 +00:00
serde = { version = "1", optional = true, features = ["derive"] }
syntect = { version = "5", optional = true, default-features = false, features = [
"default-fancy",
] }
[dev-dependencies]
criterion = { version = "0.4", default-features = false }
[[bench]]
name = "benchmark"
harness = false