atlaspack 1.0.0

Tiny deterministic sprite atlas packer for game dev (PNG in, atlas + JSON out)
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"
rust-version = "1.88"
name = "atlaspack"
version = "1.0.0"
authors = ["Viny Brun Kriesang <viniciusbrun.dev@gmail.com>"]
build = false
exclude = [
    "tests/out/**",
    "tests/out_det/**",
    "SHIP.md",
    "target/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tiny deterministic sprite atlas packer for game dev (PNG in, atlas + JSON out)"
homepage = "https://github.com/vinybrun/atlaspack"
documentation = "https://docs.rs/atlaspack"
readme = "README.md"
keywords = [
    "gamedev",
    "sprites",
    "atlas",
    "texture",
    "packer",
]
categories = [
    "game-development",
    "command-line-utilities",
    "multimedia::images",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/vinybrun/atlaspack"

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

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

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

[[test]]
name = "cli_pack"
path = "tests/cli_pack.rs"

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

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

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

[dependencies.serde_json]
version = "1.0.150"

[dependencies.thiserror]
version = "2.0.18"

[dependencies.walkdir]
version = "2.5.0"