[package]
edition = "2024"
rust-version = "1.88"
name = "lib3mf-cli"
version = "0.4.0"
authors = ["Steve Scargall"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line tool for analyzing, validating, and processing 3MF files"
homepage = "https://sscargal.github.io/lib3mf-rs/"
readme = "README.md"
keywords = [
"3mf",
"cli",
"3d-printing",
"validation",
"analysis",
]
categories = [
"command-line-utilities",
"parser-implementations",
]
license = "BSD-2-Clause"
repository = "https://github.com/sscargal/lib3mf-rs"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
crypto = ["lib3mf-core/crypto"]
default = [
"crypto",
"parallel",
]
parallel = ["lib3mf-core/parallel"]
[lib]
name = "lib3mf_cli"
path = "src/lib.rs"
[[bin]]
name = "3mf"
path = "src/main.rs"
[[example]]
name = "custom_inspect"
path = "examples/custom_inspect.rs"
[[test]]
name = "batch_tests"
path = "tests/batch_tests.rs"
[[test]]
name = "convert_integration"
path = "tests/convert_integration.rs"
[[test]]
name = "merge_tests"
path = "tests/merge_tests.rs"
[[test]]
name = "obj_materials_tests"
path = "tests/obj_materials_tests.rs"
[[test]]
name = "split_tests"
path = "tests/split_tests.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.glam]
version = "0.31.0"
features = ["serde"]
[dependencies.glob]
version = "0.3"
[dependencies.lib3mf-converters]
version = "0.4.0"
[dependencies.lib3mf-core]
version = "0.4.0"
default-features = false
[dependencies.rayon]
version = "1.10"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.walkdir]
version = "2"
[dev-dependencies.glam]
version = "0.31.0"
features = ["serde"]
[dev-dependencies.lib3mf-core]
version = "0.4.0"
default-features = false
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.tempfile]
version = "3"
[build-dependencies.vergen-gix]
version = "9.1.0"
features = [
"build",
"cargo",
"si",
]