ccalc-plot 0.47.0

Plot plugin for ccalc (ASCII and SVG/PNG output)
Documentation
[package]
name = "ccalc-plot"
version.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
edition.workspace = true
description = "Plot plugin for ccalc (ASCII and SVG/PNG output)"

[features]
plot     = ["dep:textplots"]
plot-svg = ["dep:plotters"]
plot-all = ["plot", "plot-svg"]

[dependencies]
ccalc-engine = { path = "../ccalc-engine", version = "0.47.0" }
textplots = { version = "0.8", optional = true }
plotters  = { version = "0.3", optional = true, default-features = false,
              features = ["svg_backend", "bitmap_backend", "bitmap_encoder", "line_series", "ttf"] }

[dev-dependencies]
ndarray = "0.16"