-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (43 loc) · 1.3 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
[package]
name = "mc-repack"
version = "0.27.1"
edition = "2021"
authors = ["Szeweq"]
license = "MIT"
description = "A command-line interface for repacking Minecraft mods and resource packs to optimize size and loading speed."
readme = "README.md"
homepage = "https://szeweq.xyz/mc-repack"
repository = "https://github.com/szeweq/mc-repack"
categories = ["command-line-utilities", "compression", "game-development"]
keywords = ["minecraft", "jar", "processing", "optimizer", "gamedev"]
exclude = ["/.github", "bench/*", "test-jars/*", "test-jars-repack/*", "mc-repack-logo.png"]
rust-version = "1.75.0"
[workspace]
members = ["bench","lib-core"]
[workspace.dependencies]
zip = {version = "2.2", default-features = false}
toml = "0.8"
serde = "1.0"
anyhow = "1.0"
walkdir = "2.5"
[[bin]]
name = "mc-repack"
doc = false
[dependencies]
mc-repack-core = {version = "0.27", path = "lib-core", features = ["all-zopfli"]}
crossbeam-channel = "^0.5.8"
anyhow = {workspace = true}
serde = {workspace = true}
toml = {workspace = true, features = ["preserve_order"]}
walkdir = {workspace = true}
pathdiff = "^0.2.1"
rayon = "1.10"
# CLI Dependencies
clap = {version = "4.5", features = ["derive", "cargo"]}
indicatif = {version = "0.17"}
[profile.release]
lto = true
codegen-units = 1
strip = "symbols"
[lints.clippy]
nursery = "warn"