[package]
edition = "2024"
rust-version = "1.95"
name = "ironlab"
version = "0.7.0"
authors = ["Tom Clark"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "MATLAB-flavoured Rust API for building, viewing and exporting scientific figures."
homepage = "https://ironlab.org"
readme = "README.md"
keywords = [
"plotting",
"charts",
"figures",
"matlab",
"scientific",
]
categories = [
"visualization",
"science",
"graphics",
]
license = "AGPL-3.0-or-later"
repository = "https://github.com/thclark/ironlab"
[lib]
name = "ironlab"
path = "src/lib.rs"
[[test]]
name = "axes_properties"
path = "tests/axes_properties.rs"
[[test]]
name = "contour"
path = "tests/contour.rs"
[[test]]
name = "figure"
path = "tests/figure.rs"
[[test]]
name = "images"
path = "tests/images.rs"
[[test]]
name = "lines"
path = "tests/lines.rs"
[[test]]
name = "links"
path = "tests/links.rs"
[[test]]
name = "matrix"
path = "tests/matrix.rs"
[[test]]
name = "persistence"
path = "tests/persistence.rs"
[[test]]
name = "quiver"
path = "tests/quiver.rs"
[[test]]
name = "scatter"
path = "tests/scatter.rs"
[[test]]
name = "surface"
path = "tests/surface.rs"
[dependencies.eframe]
version = "0.36.2"
[dependencies.ironlab-ir]
version = "0.7.0"
[dependencies.ironlab-pdf]
version = "0.7.0"
[dependencies.ironlab-scene]
version = "0.7.0"
[dependencies.ironlab-text]
version = "0.7.0"
[dependencies.ironlab-viewer]
version = "0.7.0"
[dependencies.serde_json]
version = "1.0.151"
[dependencies.thiserror]
version = "2.0.20"
[dev-dependencies]
[lints.clippy.all]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"