mirror of
https://github.com/ApfelTeeSaft/ia-get.git
synced 2026-08-26 19:23:36 +00:00
Bumps [indicatif](https://github.com/console-rs/indicatif) from 0.18.0 to 0.18.2. - [Release notes](https://github.com/console-rs/indicatif/releases) - [Commits](https://github.com/console-rs/indicatif/commits) --- updated-dependencies: - dependency-name: indicatif dependency-version: 0.18.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
33 lines
987 B
TOML
33 lines
987 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.18.2"
|
|
md5 = "0.8.0"
|
|
regex = "1.12.2"
|
|
reqwest = { version = "0.12.24", default-features = false, features = ["rustls-tls"] }
|
|
tokio = { version = "1.47.1", features = ["full"] }
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
serde-xml-rs = "0.8.1"
|
|
thiserror = "2.0.17"
|
|
url = "2.5.4"
|
|
clap = { version = "4.5.51", features = ["derive"] }
|
|
ctrlc = "3.5.0"
|
|
colored = "3.0.0"
|
|
|
|
[profile.release]
|
|
strip = true # Automatically strip symbols from the binary.
|
|
opt-level = "z" # Optimize for size.
|
|
lto = true
|