mirror of
https://github.com/emilk/egui.git
synced 2026-09-02 23:00:04 -04:00
Dynamic sized strips, tables, and date picker (#963)
This commit is contained in:
@@ -1,7 +1,11 @@
|
||||
[package]
|
||||
name = "egui_extras"
|
||||
version = "0.17.0"
|
||||
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
|
||||
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"
|
||||
@@ -25,12 +29,20 @@ 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"] }
|
||||
@@ -40,3 +52,6 @@ image = { version = "0.24", optional = true, default-features = false }
|
||||
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 }
|
||||
|
||||
Reference in New Issue
Block a user