-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (29 loc) · 997 Bytes
/
Cargo.toml
File metadata and controls
31 lines (29 loc) · 997 Bytes
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
[package]
name = "cflookup-cli"
description = "CLI version of https://cflookup.com"
keywords = ["minecraft", "curseforge", "mods", "modpack"]
categories = ["command-line-utilities", "api-bindings", "development-tools", "game-development"]
license = "MIT"
authors = [
"Up"
]
repository = "https://github.com/UpcraftLP/cflookup-cli"
readme = "README.md"
exclude = [
"/.github/**"
]
edition = "2024"
build = "build.rs"
[dependencies]
clap = { version = "4.6.1", features = ["derive"] }
reqwest = { version = "0.13.2", features = ["brotli", "deflate", "gzip", "json", "zstd"] }
serde_json = { version = "1.0.149", features = ["raw_value", "alloc", "preserve_order"] }
serde_yaml_bw = "2.5.5"
tokio = { version = "1.52.1", features = ["full"] }
serde = { version = "1.0.228", features = ["derive"] }
http = "1.4.0"
http-serde = "2.1.1"
built = { version = "0.8.0", features = ["chrono"] }
rootcause = "0.12.1"
[build-dependencies]
built = { version = "0.8.0", features = ["chrono", "git2"] }