-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
58 lines (53 loc) · 1.17 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[package]
name = "pdt"
version = "0.1.0"
description = "CLI tools for resource pack management and development."
repository = "https://github.com/Love-and-Tolerance/pack-dev-tools"
authors = ["Silk Rose", "Meadowsys"]
edition = "2021"
license = "MIT"
resolver = "2"
publish = false
[dependencies]
atty = "0.2.14"
camino = "1.1.6"
clap = { version = "4.5.2", features = ["derive"] }
colors-transform = "0.2.11"
deltae = "0.3.2"
fs_extra = "1.3.0"
image = "0.25.0"
itertools = "0.12.1"
lab = "0.11.0"
num_cpus = "1.16.0"
oxipng = "8.0.0"
reqwest = { version = "0.11", features = ["json"] }
serde = { version = "1", features = ["derive"] }
sha2 = "0.10.8"
serde_json = { version = "1", features = ["preserve_order"] }
tokio = { version = "1", features = ["full"] }
pdt-macros = { path = "./macros" }
[workspace]
members = [
"macros"
]
[features]
default = ["cmd", "color", "fs", "hash", "stdin", "struct", "thread", "trait"]
cmd = []
color = []
fs = []
hash = []
stdin = []
struct = []
thread = []
trait = []
[profile.dev]
opt-level = 0
debug-assertions = true
debug = true
incremental = true
[profile.release]
strip = true
opt-level = 3
debug-assertions = false
lto = true
codegen-units = 1