[package]
edition = "2024"
name = "apdl-parser"
version = "0.1.0"
build = false
exclude = [
"/files/*",
"/Cargo.toml.orig",
"/.cargo_vcs_info.json",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parser for ANSYS APDL text listings (NLIST/ELIST/DLIST/PRNSOL)"
homepage = "https://github.com/indraine/apdl-parser"
documentation = "https://docs.rs/apdl-parser"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/indraine/apdl-parser"
[lib]
name = "apdl_parser"
path = "src/lib.rs"
[[example]]
name = "parse_dlist"
path = "examples/parse_dlist.rs"
[[example]]
name = "parse_elist"
path = "examples/parse_elist.rs"
[[example]]
name = "parse_nlist"
path = "examples/parse_nlist.rs"
[[example]]
name = "parse_prnsol"
path = "examples/parse_prnsol.rs"
[dependencies.anyhow]
version = "1.0.98"