[package]
edition = "2024"
name = "flow-texpack"
version = "0.2.2"
authors = ["Andreas Widen <aw@luflow.net>"]
build = false
exclude = [
".github",
".forgejo",
".gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "flow-texpack is a program that will allow you to generate texture atlas from input images (BMP, HDR, JPG, PNG, TGA, TIFF, WEBP). The application generates both texture atlas and descriptions file that can be read by a game."
homepage = "https://luflow.net/"
readme = "README.md"
keywords = [
"image-atlas",
"texture-atlas",
"generator",
"builder",
]
categories = [
"command-line-utilities",
"game-development",
]
license = "Zlib"
repository = "https://github.com/hfsoulz/flow-texpack.git"
[lib]
name = "flow_texpack"
path = "src/lib.rs"
[[bin]]
name = "flow-texpack"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[dependencies.async-recursion]
version = "1.1.1"
[dependencies.clap]
version = "4.6.6"
features = ["derive"]
[dependencies.fern]
version = "0.7.1"
[dependencies.flow-rectpack]
version = "0.2.2"
[dependencies.humantime]
version = "2.4.0"
[dependencies.image]
version = "0.25.10"
[dependencies.log]
version = "0.4.33"
[dependencies.rich_rust]
version = "0.2.2"
[dependencies.tokio]
version = "1.53.1"
features = [
"macros",
"fs",
"io-util",
"rt-multi-thread",
]
[dev-dependencies.assert_cmd]
version = "2.2.2"