mirror of https://github.com/emilk/egui.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.6 KiB
57 lines
1.6 KiB
[package]
|
|
name = "egui_extras"
|
|
version = "0.17.0"
|
|
authors = [
|
|
"Dominik Rössler <dominik@freshx.de>",
|
|
"Emil Ernerfeldt <emil.ernerfeldt@gmail.com>",
|
|
"René Rössler <rene@freshx.de>",
|
|
]
|
|
description = "Extra functionality and widgets for the egui GUI library"
|
|
edition = "2021"
|
|
rust-version = "1.56"
|
|
homepage = "https://github.com/emilk/egui"
|
|
license = "MIT OR Apache-2.0"
|
|
readme = "../README.md"
|
|
repository = "https://github.com/emilk/egui"
|
|
categories = ["gui", "game-development"]
|
|
keywords = ["gui", "imgui", "immediate", "portable", "gamedev"]
|
|
include = ["../LICENSE-APACHE", "../LICENSE-MIT", "**/*.rs", "Cargo.toml"]
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
|
|
[lib]
|
|
|
|
|
|
[features]
|
|
default = []
|
|
|
|
# Support loading svg images
|
|
svg = ["resvg", "tiny-skia", "usvg"]
|
|
|
|
# Datepicker widget
|
|
datepicker = ["chrono"]
|
|
|
|
# Persistence
|
|
persistence = ["serde"]
|
|
|
|
[dependencies]
|
|
egui = { version = "0.17.0", path = "../egui", default-features = false }
|
|
|
|
# Optional dependencies:
|
|
|
|
# Date operations needed for datepicker widget
|
|
chrono = { version = "0.4", optional = true }
|
|
|
|
# Add support for loading images with the `image` crate.
|
|
# You also need to ALSO opt-in to the image formats you want to support, like so:
|
|
# image = { version = "0.24", features = ["jpeg", "png"] }
|
|
image = { version = "0.24", optional = true, default-features = false }
|
|
|
|
# svg feature
|
|
resvg = { version = "0.22", optional = true }
|
|
tiny-skia = { version = "0.6", optional = true }
|
|
usvg = { version = "0.22", optional = true }
|
|
|
|
# feature "persistence":
|
|
serde = { version = "1", features = ["derive"], optional = true }
|
|
|