lib3mf-cli 0.1.0

Command-line tool for analyzing 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 = "2021"
name = "lib3mf-cli"
version = "0.1.0"
authors = ["Steve Scargall <steve@example.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line tool for analyzing and processing 3MF files"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/sscargal/lib3mf-rs"

[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.1.0"

[dependencies.lib3mf-core]
version = "0.1.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",
]