forked from Gip-Gip/egui-plotter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (32 loc) · 1 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "egui-plotter"
version = "0.3.0"
edition = "2021"
authors = ["Charles Thompson"]
license = "MIT"
readme = "README.md"
keywords = ["plotters", "plotter", "egui", "backend"]
categories = ["graphics", "gui", "mathematics", "rendering", "visualization"]
description = "Simple to use utilties for integrating plotter into egui"
repository = "https://github.com/Gip-Gip/egui-plotter"
exclude = ["images"]
[features]
timechart = ["dep:instant"]
[dependencies]
egui = "0.30"
plotters-backend = "0.3"
plotters = "0.3"
# if you are using egui then chances are you're using trunk which uses wasm bindgen
instant = { version = "0.1", features = ["wasm-bindgen"], optional = true }
[dev-dependencies]
eframe = "0.30"
# Hacky way to enable features during testing
egui-plotter = { path = ".", version = "0.3", features = ["timechart"] }
[package.metadata.docs.rs]
features = ["timechart"]
[[example]]
name = "spiral"
required-features = ["timechart"]
[[example]]
name = "timechart"
required-features = ["timechart"]