[package]
edition = "2021"
rust-version = "1.88"
name = "cadmpeg-step"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Serialize cadmpeg IR documents as ISO 10303-21 STEP AP214 files."
homepage = "https://github.com/cadmpeg/cadmpeg"
documentation = "https://docs.rs/cadmpeg-step"
readme = "README.md"
keywords = [
"cad",
"step",
"iso-10303",
"ap214",
"brep",
]
categories = [
"encoding",
"graphics",
]
license = "Apache-2.0"
repository = "https://github.com/cadmpeg/cadmpeg"
[lib]
name = "cadmpeg_step"
path = "src/lib.rs"
[[bench]]
name = "step_pipeline"
path = "benches/step_pipeline.rs"
harness = false
[dependencies.cadmpeg-ir]
version = "0.3.0"
[dependencies.encoding_rs]
version = "0.8"
[dependencies.thiserror]
version = "2"
[lints.clippy]
cast_lossless = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
dbg_macro = "warn"
disallowed_methods = "allow"
float_cmp = "allow"
match_same_arms = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
similar_names = "allow"
single_match_else = "allow"
todo = "warn"
too_many_lines = "allow"
unimplemented = "warn"
unwrap_used = "warn"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"