-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (32 loc) · 957 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 = "axolotl-cli"
version = "1.1.0"
edition = "2021"
description = "A CLI tool for mod distribution"
repository = "https://github.com/diacritics-owo/axolotl"
readme = "README.md"
license = "MIT"
keywords = ["minecraft", "cli", "modrinth", "mod"]
categories = ["command-line-utilities"]
authors = ["diacritics-owo"]
[[bin]]
name = "axolotl"
path = "src/main.rs"
[dependencies]
age = "0.10.0"
base64 = "0.22.1"
clap = { version = "4.5.16", features = ["derive"] }
dirs = "5.0.1"
inquire = { version = "0.7.5", features = ["editor"] }
lazy_static = "1.5.0"
log = "0.4.22"
modrinth-api = "2.7.1"
octocrab = "0.39.0"
pretty_env_logger = "0.5.0"
reqwest = { version = "0.12.7", features = ["stream"] }
serde = { version = "1.0.209", features = ["derive"] }
serde_json = "1.0.128"
thiserror = "1.0.63"
tokio = { version = "1.40.0", features = ["macros", "rt-multi-thread"] }
tokio-util = { version = "0.7.12", features = ["codec"] }
toml = "0.8.19"