step-io 0.2.4

STEP (ISO 10303) file I/O for Rust.
Documentation
// @generated by codegen. DO NOT EDIT.
//! The generated layer — the schema-faithful [`model`] with its [`author`]
//! constructors and [`resolve`] navigation (the read/write plumbing is
//! crate-internal).
//!
//! All emitted by the `codegen` crate from `schema/universal.toml`. The
//! entry types — [`StepModel`](model::StepModel), [`EntityKey`](model::EntityKey),
//! and [`Ap242Author`](author::Ap242Author) — are re-exported at the crate
//! root, so you rarely reach into it directly.
#![allow(
    dead_code,
    unused_variables,
    unreachable_code,
    clippy::all,
    clippy::pedantic
)]
pub mod author;
pub(crate) mod generic_normalize;
pub mod model;
pub(crate) mod read;
pub mod resolve;
pub(crate) mod schema;
pub(crate) mod walk;
pub(crate) mod write;