-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
55 lines (51 loc) · 1.72 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
# Copyright (c) 2024 Andrew Brower.
# This file is part of Crawlspace.
#
# Crawlspace is free software: you can redistribute it and/or
# modify it under the terms of the GNU Affero General Public
# License as published by the Free Software Foundation, either
# version 3 of the License, or (at your option) any later version.
#
# Crawlspace is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public
# License along with Crawlspace. If not, see
# <https://www.gnu.org/licenses/>.
[package]
name = "crawlspace"
version = "0.1.0"
edition = "2021"
license = "AGPL-3.0-or-later"
[dependencies]
aes = { version = "0.8.4", optional = true }
bit-vec = "0.8.0"
bitfield-struct = "0.9.2"
byteorder = "1.5.0"
bytes = "1.8.0"
cfb8 = { version = "0.8.1", optional = true }
clap = { version = "4.5.20", features = ["derive"] }
color-eyre = "0.6.3"
fastanvil = { git = "https://github.com/owengage/fastnbt.git" }
fastnbt = { git = "https://github.com/owengage/fastnbt.git" }
rand = "0.8.5"
rayon = "1.10.0"
serde = { version = "1.0.213", features = ["derive"] }
serde_json = "1.0.132"
sha2 = "0.10.8"
thiserror = "1.0.65"
tokio = { version = "1.41.0", features = ["full"] }
tokio-util = "0.7.12"
tracing = { version = "0.1.40", features = ["max_level_trace", "release_max_level_info"] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
uuid = "1.11.0"
[features]
default = []
compression = []
encryption = ["dep:cfb8", "dep:aes"]
modern_art = []
lan = []
timings = []
full = ["compression", "encryption"]