-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (38 loc) · 1.22 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
[package]
name = "packwiz-modlist"
description = "Creates a modlist from packwiz"
authors = ["Ricky12Awesome"]
version = "1.5.3"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
keywords = ["packwiz", "modding", "minecraft"]
categories = ["command-line-utilities"]
repository = "https://github.com/Ricky12Awesome/packwiz-modlist"
homepage = "https://github.com/Ricky12Awesome/packwiz-modlist"
build = "build.rs"
[[bin]]
name = "packwizml"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = { version = "^0.12", features = ["json"] }
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
clap = { version = "^4.5", features = ["cargo", "derive"] }
toml = "^0.8"
tokio = { version = "^1.36", features = ["full"] }
futures = "^0.3"
thiserror = "^1.0"
colored = "^2.1"
log = "^0.4"
itertools = "^0.12"
simple_logger = { version = "^4.3", default-features = false, features = ["colored"] }
[build-dependencies]
log = "^0.4"
clap = { version = "^4.5", features = ["cargo", "derive"] }
clap_complete = "^4.5"
anyhow = "^1.0"
# So LevelFilter works
simple_logger = { version = "^4.3", default-features = false }
dotenv-build = "^0.1"