# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2018" name = "downloader" version = "0.2.8" authors = ["Tobias Hunger "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A simple way to download things via HTTP/HTTPS" readme = "README.md" keywords = [ "http", "https", "download", ] categories = ["web-programming::http-client"] license = "LGPL-3.0-or-later" repository = "https://github.com/hunger/downloader" [lib] name = "downloader" path = "src/lib.rs" [[example]] name = "download" path = "examples/download.rs" [[example]] name = "tui_basic" path = "examples/tui_basic.rs" [dependencies.digest] version = "0.10.1" optional = true [dependencies.futures] version = "0.3" [dependencies.indicatif] version = "0.17.2" optional = true [dependencies.rand] version = "0.8" [dependencies.reqwest] version = "0.12" default-features = false [dependencies.thiserror] version = "1.0" [dependencies.tokio] version = "1.23" features = [ "rt-multi-thread", "time", ] [dev-dependencies.sha3] version = "0.10.0" [features] default = ["default-tls"] default-tls = ["reqwest/default-tls"] rustls-tls = ["reqwest/rustls-tls"] tui = ["indicatif"] verify = ["digest"]