-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
28 lines (26 loc) · 1020 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
[package]
name = "hfw-save-converter"
version = "1.0.0"
description = "A cross-platform application to convert Horizon Forbidden West's PS4 saves to PC"
authors = ["Krzysztof Saczuk <me@krzysztofsaczuk.pl>"]
edition = "2021"
repository = "https://github.com/zakuciael/hfw-save-converter"
readme = "README.md"
license = "GPL-3.0-or-later"
keywords = ["save", "save-converter", "ps4-to-pc", "hfw"]
categories = ["parser-implementations", "command-line-utilities"]
[[bin]]
name = "hfw-save-converter"
path = "src/main.rs"
[dependencies]
binrw = { version = "0.13.3", default-features = false, features = ["std"] }
clap = { version = "4.5.4", features = ["derive", "cargo"] }
color-eyre = "0.6.3"
derivative = "2.2.0"
image = { version = "0.25.0", default-features = false, features = ["png"] }
lazy_static = "1.4.0"
path-absolutize = "3.1.1"
tiny-gradient = "0.1.0"
tracing = { version = "0.1.40", features = ["log"] }
tracing-error = "0.2.0"
tracing-subscriber = { version = "0.3.18", features = ["fmt", "env-filter"] }