-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (29 loc) · 958 Bytes
/
Cargo.toml
File metadata and controls
34 lines (29 loc) · 958 Bytes
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
[package]
name = "plotters-wxdragon"
version = "0.1.1"
edition = "2024"
categories = ["graphics", "gui", "visualization"]
description = """Plotters backend for wxDragon, allowing drawing Plotters
graphs on wxWidgets device contexts."""
documentation = "https://docs.rs/plotters-wxdragon"
keywords = ["wxwidgets", "gui", "plotting", "drawing", "visualization"]
homepage = "https://github.com/threefold3/plotters-wxdragon"
include = ["/examples", "/src", "/tests", "LICENSE*", "NOTICE*", "README.md"]
license = "Apache-2.0 OR MIT"
readme = "README.md"
repository = "https://github.com/threefold3/plotters-wxdragon"
[dependencies]
thiserror = "1"
# See https://docs.rs/plotters-backend/latest/plotters_backend/#compatibility-note
plotters-backend = "^0.3"
wxdragon = "0.9"
[dev-dependencies]
anyhow = "1"
image = "0.25"
plotters = "^0.3"
[lints.rust]
unsafe_code = "forbid"
missing_docs = "warn"
[lints.clippy]
[badges]
maintenance.status = "experimental"