[package]
edition = "2024"
rust-version = "1.85"
name = "step-io"
version = "0.1.0"
build = false
exclude = [
"schema/",
".github/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "STEP (ISO 10303) file I/O for Rust."
readme = "README.md"
keywords = [
"step",
"iso10303",
"cad",
"geometry",
"parser",
]
categories = [
"parser-implementations",
"science",
"encoding",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/elgar328/step-io"
[lib]
name = "step_io"
path = "src/lib.rs"
[[test]]
name = "author_basic"
path = "tests/author_basic.rs"
[[test]]
name = "builder_assembly"
path = "tests/builder_assembly.rs"
[[test]]
name = "builder_basic"
path = "tests/builder_basic.rs"
[[test]]
name = "builder_brep"
path = "tests/builder_brep.rs"
[[test]]
name = "builder_escape"
path = "tests/builder_escape.rs"
[[test]]
name = "builder_header"
path = "tests/builder_header.rs"
[[test]]
name = "builder_layer"
path = "tests/builder_layer.rs"
[[test]]
name = "builder_mesh"
path = "tests/builder_mesh.rs"
[[test]]
name = "builder_meta"
path = "tests/builder_meta.rs"
[[test]]
name = "builder_nurbs"
path = "tests/builder_nurbs.rs"
[[test]]
name = "builder_style"
path = "tests/builder_style.rs"
[[test]]
name = "builder_swept"
path = "tests/builder_swept.rs"
[[test]]
name = "fallible_read"
path = "tests/fallible_read.rs"
[[test]]
name = "golden_writer"
path = "tests/golden_writer.rs"
[[test]]
name = "parser_robustness"
path = "tests/parser_robustness.rs"
[[test]]
name = "refgraph"
path = "tests/refgraph.rs"
[[test]]
name = "resolve"
path = "tests/resolve.rs"
[[test]]
name = "scene_geometry"
path = "tests/scene_geometry.rs"
[[test]]
name = "scene_mapped"
path = "tests/scene_mapped.rs"
[[test]]
name = "scene_mesh"
path = "tests/scene_mesh.rs"
[[test]]
name = "scene_nurbs"
path = "tests/scene_nurbs.rs"
[[test]]
name = "scene_nurbs_surface"
path = "tests/scene_nurbs_surface.rs"
[[test]]
name = "scene_pmi"
path = "tests/scene_pmi.rs"
[[test]]
name = "scene_product"
path = "tests/scene_product.rs"
[[test]]
name = "scene_units"
path = "tests/scene_units.rs"
[[test]]
name = "schema_report"
path = "tests/schema_report.rs"
[[test]]
name = "writer_target"
path = "tests/writer_target.rs"
[dependencies.logos]
version = "0.16"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "deny"