mirror of
https://github.com/emilk/egui.git
synced 2026-06-27 15:13:12 -04:00
* Closes https://github.com/emilk/egui/issues/3941 Workspace dependencies can be annoying. If you don't set them to `default-features=false`, then you cannot opt out of their default features anywhere else, and get warnings if you try. So you set `default-features=false`, and then you need to manually opt in to the default features everywhere else. Or, as in my case, don't. I don't have the energy to do this tonight, so I'll just revert.
43 lines
1.2 KiB
TOML
43 lines
1.2 KiB
TOML
[package]
|
|
name = "egui_plot"
|
|
version.workspace = true
|
|
authors = [
|
|
"Emil Ernerfeldt <emil.ernerfeldt@gmail.com>", # https://github.com/emilk
|
|
"Jan Haller <bromeon@gmail.com>", # https://github.com/Bromeon
|
|
"Sven Niederberger <s-niederberger@outlook.com>", # https://github.com/EmbersArc
|
|
]
|
|
description = "Immediate mode plotting for the egui GUI library"
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
homepage = "https://github.com/emilk/egui"
|
|
license.workspace = true
|
|
readme = "README.md"
|
|
repository = "https://github.com/emilk/egui"
|
|
categories = ["visualization", "gui"]
|
|
keywords = ["egui", "plot", "plotting"]
|
|
include = ["../LICENSE-APACHE", "../LICENSE-MIT", "**/*.rs", "Cargo.toml"]
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
|
|
[lib]
|
|
|
|
|
|
[features]
|
|
default = []
|
|
|
|
|
|
## Allow serialization using [`serde`](https://docs.rs/serde).
|
|
serde = ["dep:serde", "egui/serde"]
|
|
|
|
|
|
[dependencies]
|
|
egui = { version = "0.25.0", path = "../egui", default-features = false }
|
|
|
|
|
|
#! ### Optional dependencies
|
|
## Enable this when generating docs.
|
|
document-features = { version = "0.2", optional = true }
|
|
|
|
serde = { version = "1", optional = true, features = ["derive"] }
|