mirror of
https://github.com/ApfelTeeSaft/ia-get.git
synced 2026-08-26 19:23:36 +00:00
Bumps [clap](https://github.com/clap-rs/clap) from 4.5.39 to 4.5.40. - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.39...clap_complete-v4.5.40) --- updated-dependencies: - dependency-name: clap dependency-version: 4.5.40 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
33 lines
988 B
TOML
33 lines
988 B
TOML
[package]
|
|
name = "ia-get"
|
|
categories = ["command-line-utilities"]
|
|
description = "File downloader for archive.org"
|
|
keywords = ["cli", "archive", "internet-archive", "download"]
|
|
authors = ["Martin Wimpress <[email protected]>"]
|
|
repository = "https://github.com/wimpysworld/ia-get"
|
|
readme = "README.md"
|
|
version = "0.1.2"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
futures = "0.3.31"
|
|
indicatif = "0.17.11"
|
|
md5 = "0.7.0"
|
|
regex = "1.11.1"
|
|
reqwest = { version = "0.12.19", default-features = false, features = ["rustls-tls"] }
|
|
tokio = { version = "1.45.1", features = ["full"] }
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
serde-xml-rs = "0.8.1"
|
|
thiserror = "2.0.12"
|
|
url = "2.5.4"
|
|
clap = { version = "4.5.40", features = ["derive"] }
|
|
ctrlc = "3.4.7"
|
|
colored = "3.0.0"
|
|
|
|
[profile.release]
|
|
strip = true # Automatically strip symbols from the binary.
|
|
opt-level = "z" # Optimize for size.
|
|
lto = true
|