[package]
edition = "2024"
name = "plotters-wxdragon"
version = "0.1.1"
build = false
include = [
"/examples",
"/src",
"/tests",
"LICENSE*",
"NOTICE*",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Plotters backend for wxDragon, allowing drawing Plotters
graphs on wxWidgets device contexts."""
homepage = "https://github.com/threefold3/plotters-wxdragon"
documentation = "https://docs.rs/plotters-wxdragon"
readme = "README.md"
keywords = [
"wxwidgets",
"gui",
"plotting",
"drawing",
"visualization",
]
categories = [
"graphics",
"gui",
"visualization",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/threefold3/plotters-wxdragon"
[badges.maintenance]
status = "experimental"
[lib]
name = "plotters_wxdragon"
path = "src/lib.rs"
[[example]]
name = "text"
path = "examples/text.rs"
[[example]]
name = "x2"
path = "examples/x2.rs"
[[test]]
name = "3d_plot"
path = "tests/3d_plot.rs"
[[test]]
name = "chart"
path = "tests/chart.rs"
[[test]]
name = "full_palette"
path = "tests/full_palette.rs"
[[test]]
name = "mandelbrot"
path = "tests/mandelbrot.rs"
[[test]]
name = "test_utils"
path = "tests/test_utils.rs"
[dependencies.plotters-backend]
version = "^0.3"
[dependencies.thiserror]
version = "1"
[dependencies.wxdragon]
version = "0.9"
[dev-dependencies.anyhow]
version = "1"
[dev-dependencies.image]
version = "0.25"
[dev-dependencies.plotters]
version = "^0.3"
[lints.clippy]
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"