lib3mf-cli 0.3.0

Command-line tool for analyzing, validating, and processing 3MF files
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "lib3mf-cli"
version = "0.3.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"

[dependencies.anyhow]
version = "1.0"

[dependencies.clap]
version = "4.5"
features = ["derive"]

[dependencies.lib3mf-converters]
version = "0.3.0"

[dependencies.lib3mf-core]
version = "0.3.0"
default-features = false

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "2.0.18"

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