-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (33 loc) · 1.01 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
[package]
name = "snesimage"
version = "0.1.0"
authors = ["Jason Lynch <[email protected]>"]
edition = "2021"
description = "Tool to optimize images for use on the SNES"
repository = "https://github.com/aexoden/snesimage"
license = "MIT OR Apache-2.0"
keywords = ["graphics", "retro"]
categories = ["multimedia::images"]
[lints.rust]
future_incompatible = { level = "warn", priority = -1 }
let_underscore = { level = "warn", priority = -1 }
[lints.clippy]
cargo = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
missing_errors_doc = "allow"
multiple_crate_versions = "allow"
[dependencies]
anyhow = { version = "1.0.95", features = ["backtrace"] }
cached = "0.54.0"
chrono = { version = "0.4.39", default-features = false, features = ["clock"] }
clap = { version = "4.5.28", features = ["derive"] }
cogset = "0.2"
fern = { version = "0.7", features = ["colored"] }
image = "0.25.5"
log = "0.4"
palette = "0.7.6"
rand = "0.9.0"
rgb = "0.8"
sdl2 = "0.37.0"
serde_json = "1.0.138"
ssimulacra2 = "0.5.1"