[package] name = "gguppy" version.workspace = true authors.workspace = true edition.workspace = true homepage.workspace = true repository.workspace = true license.workspace = true description = "A multi-platform plotting library based on the grammar of graphics implemented in pure Rust with a no_std feature." [workspace] members = ["crates/*"] default-members = [ ".", "crates/gguppy_core", "crates/gguppy_data", "crates/arwggplot", ] [workspace.package] version = "0.1.0" authors = ["Alwin Wang "] license = "Apache-2.0 OR MIT" homepage = "https://github.com/alwinw/arwggplot" repository = "https://github.com/alwinw/arwggplot" edition = "2021" [workspace.dependencies] arwggplot = { path = "crates/arwggplot", version = "0.1.0" } gguppy_core = { path = "crates/gguppy_core", version = "0.1.0" } gguppy_data = { path = "crates/gguppy_data", version = "0.1.0" } [dependencies] gguppy_core.workspace = true gguppy_data.workspace = true arwggplot = { workspace = true, optional = false } [features] save_file = ["arwggplot/save_file"]