ezel 0.0.1

A good plotting library
Documentation
[package]
name = "ezel"
version = "0.0.1"
edition = "2021"
authors = ["elbaro"]
homepage = "https://ezel.rustic.dev/"
description = "A good plotting library"
license = "MIT"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0.56"
cassowary = "0.3.0"
euclid = "0.22.6"
piet = "0.5.0"
piet-common = "0.5.0"
piet-svg = { version = "0.5.0", optional = true }
polars = "0.20.0"
rand = "0.8.5"
rand_distr = "0.4.3"

[features]
default = ["png", "svg", "advise"]
png = ["piet/png", "piet-common/png"]
svg = ["piet-svg"]

# optional features
gg = []     # gg = grammar of graphics. provides `ezel::gg`.
advise = [] # report possibly incorrect usages in stderr

# [profile.release]
# debug = true