20 lines
539 B
TOML
20 lines
539 B
TOML
[package]
|
|
name = "mcsm"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.6.6", features = ["derive"] }
|
|
colored = "3.1.1"
|
|
dialoguer = { version = "0.12.0", features = ["fuzzy-select"] }
|
|
futures-util = "0.3.34"
|
|
hex = "0.4.3"
|
|
indicatif = "0.18.6"
|
|
reqwest = { version = "0.13.4", features = ["json", "stream", "query"] }
|
|
serde = { version = "1.0.229", features = ["derive"] }
|
|
sha1 = "0.11.0"
|
|
sha2 = "0.11.0"
|
|
terminal_size = "0.4.4"
|
|
textwrap = "0.16.2"
|
|
tokio = { version = "1.53.1", features = ["full"] }
|
|
toml = "1.1.4"
|