-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
61 lines (56 loc) · 1.7 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
59
60
61
[package]
name = "little-a-map"
version = "0.13.3"
repository = "https://codeberg.org/AndrewKvalheim/little-a-map"
categories = ["command-line-utilities"]
keywords = ["minecraft"]
description = "Players can have little a map—if they've surveyed the area in-game. This tool renders a composite of player-created map items with the goal of minimizing external effects on survival gameplay."
authors = ["Andrew Kvalheim <Andrew@Kvalhe.im>"]
license = "GPL-3.0-or-later"
readme = "README.md"
edition = "2021"
rust-version = "1.75.0" # rust-lang/rust#98245
[lints.clippy]
nursery = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
missing_errors_doc = "allow"
missing_panics_doc = "allow"
similar_names = "allow"
too_many_lines = "allow"
[[bin]]
name = "little-a-map"
path = "src/bin/main.rs"
bench = false
[dependencies]
anyhow = { version = "1.0", features = ["backtrace"]}
askama = { version = "0.12", features = ["percent-encoding", "serde-json"] }
bincode = "1.3"
derivative = "2.1"
env_logger = "0.11.3"
fastanvil = "0.31.0"
fastnbt = "2.5.0"
flate2 = { version = "1.0", features = ["zlib-ng"], default-features = false }
forgiving-semver = { version = "0.11.0", features = ["serde"] }
glob = "0.3"
indicatif = { version = "0.17", features = ["rayon"] }
itertools = "0.13"
log = "0.4"
once_cell = "1.4"
paw = "1.0"
rayon = "1.10"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_with = { version = "3.0", features = ["json"] }
serde-query = "0.2"
structopt = { version = "0.3", features = ["paw"] }
webp = "0.3"
zstd = "0.13"
[dev-dependencies]
criterion = "0.5"
image = "0.25"
rstest = "0.23"
rstest_reuse = "0.7"
tempfile = "3.3"
[[bench]]
name = "default"
harness = false