-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
38 lines (34 loc) · 963 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
35
36
37
38
[package]
name = "spritter"
version = "1.2.0"
edition = "2021"
authors = ["fgardt <[email protected]>"]
description = "Spritesheet generator for factorio"
repository = "https://github.com/fgardt/factorio-spritter"
[profile.release]
strip = true
lto = "thin"
[lints.rust]
unsafe_code = "forbid"
[lints.clippy]
nursery = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
unwrap_used = "warn"
expect_used = "warn"
module_name_repetitions = "allow"
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
cast_possible_wrap = "allow"
cast_lossless = "allow"
cast_sign_loss = "allow"
[dependencies]
clap = { version = "4.5", features = ["derive"] }
env_logger = "0.10"
image = { version = "0.25", features = ["png", "gif"] }
log = "0.4"
rayon = "1.10"
strum = { version = "0.26", features = ["derive"] }
thiserror = "2"
natord = "1.0"
oxipng = { version = "9", default-features = false, features = ["parallel"] }
imagequant = "4"