[package]
edition = "2024"
name = "modelscope"
version = "0.1.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A command-line interface tool for downloading models from Modelscope, which can also be used as a library"
documentation = "https://docs.rs/modelscope"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/xgpxg/modelscope"
[lib]
name = "modelscope"
path = "src/lib.rs"
[[bin]]
name = "modelscope"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.5.47"
features = ["derive"]
[dependencies.futures-util]
version = "0.3.31"
[dependencies.indicatif]
version = "0.18.0"
[dependencies.reqwest]
version = "0.13"
features = [
"json",
"stream",
"cookies",
]
[dependencies.serde]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.tokio]
version = "1.47"
features = [
"rt",
"rt-multi-thread",
"macros",
]