rmskin-builder 2.0.4

A CLI tool to package Rainmeter Skins into a .rmskin file.
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 = "rmskin-builder"
version = "2.0.4"
build = false
exclude = [
    ".github/",
    ".vscode/",
    "nurfile",
    "cspell.config.yml",
    ".pre-commit-config.yaml",
    "CONTRIBUTING.md",
    "action*",
    "rmskin_builder.pyi",
    "pyproject.toml",
    "uv.lock",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A CLI tool to package Rainmeter Skins into a .rmskin file."
readme = "README.md"
license = "MIT"
repository = "https://github.com/2bndy5/rmskin-action"

[features]
anyhow = ["dep:anyhow"]
bin = [
    "anyhow",
    "clap",
    "colored",
]
clap = ["dep:clap"]
colored = ["dep:colored"]
default = []
py-binding = [
    "pyo3",
    "pyo3-log",
    "clap",
]
pyo3 = ["dep:pyo3"]
pyo3-log = ["dep:pyo3-log"]

[lib]
name = "rmskin_builder"
crate-type = [
    "lib",
    "cdylib",
]
path = "src/lib.rs"

[[bin]]
name = "rmskin-build"
path = "src/main.rs"
required-features = ["bin"]

[dependencies.anyhow]
version = "1.0.102"
optional = true

[dependencies.clap]
version = "4.6.0"
features = ["derive"]
optional = true

[dependencies.colored]
version = "3.1.1"
optional = true

[dependencies.image]
version = "0.25.10"
features = ["bmp"]
default-features = false

[dependencies.log]
version = "0.4.29"

[dependencies.pyo3]
version = "0.28.2"
features = [
    "extension-module",
    "abi3-py39",
]
optional = true

[dependencies.pyo3-log]
version = "0.13.3"
optional = true

[dependencies.rust-ini]
version = "0.21.3"

[dependencies.tempfile]
version = "3.27.0"

[dependencies.thiserror]
version = "2.0.18"

[dependencies.zip]
version = "8.4.0"
features = ["deflate"]
default-features = false

[dev-dependencies]