[package]
edition = "2024"
rust-version = "1.85"
name = "step-p21"
version = "0.1.1"
authors = [
"Moritz Moeller <virtualritz@protonmail.com>",
"Toshiki Teramura <teramura@ricos.co.jp>",
"Yoshinori Tanimura <tanimura@ricos.co.jp>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ISO 10303-21 (STEP file) parser and serde-based entity tables"
documentation = "https://docs.rs/step-p21"
readme = "README.md"
keywords = [
"step",
"cad",
"iso10303",
"parser",
]
categories = [
"science",
"parser-implementations",
]
license = "Apache-2.0"
repository = "https://github.com/virtualritz/step-p21"
[lib]
name = "step_p21"
path = "src/lib.rs"
[[test]]
name = "abc_dataset"
path = "tests/abc_dataset.rs"
[[test]]
name = "any"
path = "tests/any.rs"
[[test]]
name = "bool_logical_deserialize"
path = "tests/bool_logical_deserialize.rs"
[[test]]
name = "entity"
path = "tests/entity.rs"
[[test]]
name = "enum_deserialize"
path = "tests/enum_deserialize.rs"
[[test]]
name = "list"
path = "tests/list.rs"
[[test]]
name = "optional"
path = "tests/optional.rs"
[[test]]
name = "recursive_select"
path = "tests/recursive_select.rs"
[[test]]
name = "subsuper"
path = "tests/subsuper.rs"
[[test]]
name = "type_decl"
path = "tests/type_decl.rs"
[[test]]
name = "unreleased_syntax_fixes"
path = "tests/unreleased_syntax_fixes.rs"
[dependencies.Inflector]
version = "0.11"
[dependencies.derive-new]
version = "0.7"
[dependencies.derive_more]
version = "2"
features = ["full"]
[dependencies.itertools]
version = "0.15"
[dependencies.nom]
version = "8"
[dependencies.nom-language]
version = "0.1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.step-p21-derive]
version = "0.1.1"
[dependencies.thiserror]
version = "2"
[dev-dependencies.anyhow]
version = "1"
[dev-dependencies.maplit]
version = "1"