-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (26 loc) · 889 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
[package]
name = "prismarine"
version = "0.1.2"
authors = ["Jade Nash <[email protected]>"]
description = "A utility for creating and exporting Minecraft resource packs."
keywords = ["minecraft", "utility", "resource-pack", "texture-pack"]
readme = "README.md"
license = "MIT OR Apache-2.0"
documentation = "https://prismarine.jadelily.dev"
repository = "https://github.com/jadelily18/prismarine"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.3.19", features = ["derive"] }
colored = "2.0.4"
toml = "0.8.10"
serde = { version = "1.0.180", features = ["derive"] }
serde_json = "1.0.104"
ignore = "0.4.20"
zip = "0.6.6"
flexver-rs = "0.1.2"
regex = "1.9.1"
dotenvy = "0.15.7"
thiserror = "1.0.44"
[dev-dependencies]
cargo-husky = { version = "1.5.0", features = ["user-hooks"] }