[package]
edition = "2021"
name = "plot3d"
version = "0.1.6"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Utilities for reading, writing, and manipulating NASA PLOT3D structured grids."
readme = "README.md"
license = "MIT"
[features]
default = []
f32 = []
metis-partition = ["metis-rs"]
[lib]
name = "plot3d"
path = "src/lib.rs"
[[test]]
name = "test_connectivity"
path = "tests/test_connectivity.rs"
[[test]]
name = "test_merge_blocks"
path = "tests/test_merge_blocks.rs"
[[test]]
name = "test_periodicity"
path = "tests/test_periodicity.rs"
[[test]]
name = "test_read_write"
path = "tests/test_read_write.rs"
[dependencies.byteorder]
version = "1.5"
[dependencies.indicatif]
version = "0.18.4"
[dependencies.metis-rs]
version = "0.1"
optional = true
[dependencies.rayon]
version = "1.11.0"
[dependencies.reqwest]
version = "0.12"
features = ["blocking"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.thiserror]
version = "1.0"
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.tempfile]
version = "3.10"