[package] name = "data_downloader" version = "0.2.0" edition = "2021" license = "MIT OR Apache-2.0" description = "A simple way to download and cache files" documentation = "https://docs.rs/data_downloader" authors = ["Till Arnold"] keywords = ["download", "reference_data"] repository = "https://github.com/tillarnold/data_downloader" categories = ["filesystem", "caching", "network-programming"] exclude = [ "/rustfmt.toml", "/.github/*", "/justfile", ] rust-version = "1.70.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] zip = ["dep:zip"] [dependencies] dirs = "5.0.1" hex-literal = "0.4.1" reqwest = { version ="0.12.4", features = ["blocking"]} sha2 = "0.10.8" thiserror = "1.0.59" zip = {version = "1.1.1", optional = true } [dev-dependencies] proptest = "1.4.0"