lib3mf-cli 0.4.0

Command-line tool for analyzing, validating, and processing 3MF files
Documentation
[package]
name = "lib3mf-cli"
version.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
edition.workspace = true
rust-version.workspace = true
readme = "README.md"
description = "Command-line tool for analyzing, validating, and processing 3MF files"
keywords = ["3mf", "cli", "3d-printing", "validation", "analysis"]
categories = ["command-line-utilities", "parser-implementations"]
homepage = "https://sscargal.github.io/lib3mf-rs/"

[features]
default = ["crypto", "parallel"]
crypto = ["lib3mf-core/crypto"]
parallel = ["lib3mf-core/parallel"]

[lib]
name = "lib3mf_cli"
path = "src/lib.rs"

[[bin]]
name = "3mf"
path = "src/main.rs"

[dependencies]
lib3mf-core.workspace = true
lib3mf-converters.workspace = true
clap = { version = "4.5", features = ["derive"] }
serde.workspace = true
serde_json = "1.0"
thiserror.workspace = true
anyhow.workspace = true
glob = "0.3"
glam.workspace = true
walkdir = "2"
rayon = { workspace = true }

[dev-dependencies]
tempfile = "3"
glam.workspace = true
lib3mf-core.workspace = true
serde_json = "1.0"

[build-dependencies]
vergen-gix = { version = "9.1.0", features = ["build", "cargo", "si"] }

# Configure docs.rs
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]