-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (31 loc) · 982 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
authors = ["Laocoon <[email protected]>"]
description = "Split atlas images into separate images named by index"
edition = "2021"
homepage = "https://github.com/Laocoon7/explode-image"
license = "BlueOak-1.0.0"
name = "explode-image"
readme = "README.md"
repository = "https://github.com/Laocoon7/explode-image"
version = "0.1.0"
categories = ["Encoding", "Game development", "Graphics", "Multimedia"]
keywords = ["split", "atlas", "tileset", "tilemap", "image"]
resolver = "2"
#################################
######### CLI
#################################
[dependencies.clap]
features = ["derive"]
version = "4.0.23"
#################################
######### Image Processing
#################################
[dependencies.image]
features = []
version = "0.24.5"
#################################
######### Error
#################################
[dependencies.thiserror]
features = []
version = "1.0.37"