-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (29 loc) · 1.03 KB
/
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
35
[workspace]
members = [".", "examples", "pixelart_table_abs"]
[package]
name = "pixelart"
version = "0.2.0"
edition = "2021"
description = "Show everyone the art hidden inside your code AGAIN."
license = "MIT"
readme = "README.md"
repository = "https://github.com/immmdreza/pixelart"
keywords = ["pixel", "graphics", "pixelart", "art", "gif"]
exclude = ["arts/", ".vscode/", "/target", "/examples"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# Basic deps
rand = "0.8.5"
anyhow = "1.0.95"
thiserror = "2.0.9"
# Deps related to generate and modify pictures.
image = "0.25.5"
imageproc = { version = "0.25.0" }
# Optional
eframe = { version = "0.30.0", optional = true }
uuid = { version = "1.11.0", features = ["v4"], optional = true }
atomic-time = { version = "0.1", optional = true }
rfd = { version = "0.15.1", optional = true }
pixelart_table_abs = { version = "*", path = "pixelart_table_abs" }
[features]
viewer = ["dep:eframe", "dep:uuid", "dep:atomic-time", "dep:rfd"]