]> luflow.net public git repositories - flow-texpack.git/blob - Cargo.toml
Initial commit.
[flow-texpack.git] / Cargo.toml
1 [package]
2 name = "flow-texpack"
3 version = "0.1.0"
4 edition = "2024"
5 authors = ["Andreas Widen <aw@luflow.net>"]
6 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."
7 license = "Zlib"
8 repository = "https://luflow.net/git-repos/flow-texpack.git"
9 readme = "README.md"
10 documentation = "https://luflow.net/git-repos/flow-texpack.git"
11 keywords = ["texture atlas", "image atlas", "generator"]
12 exclude = [".github", "/ci/*", "*.log"]
13
14 [dependencies]
15 flow-rbp = { git = "https://luflow.net/git/flow-rbp.git", tag = "v0.1.0" }
16 tokio = { version = "1.52.3", features = ["macros", "fs", "io-util", "rt-multi-thread"] }
17 async-recursion = "1.1.1"
18 rich_rust = "0.2.1"
19 image = "0.25.10"
20 clap = { version = "4.6.1", features = ["derive"] }
21 fern = "0.7.1"
22 log = "0.4.32"
23 humantime = "2.3.0"
24
25 [dev-dependencies]
26 assert_cmd = "2.2.2"