[package] name = "gi-get-artifact" version = "0.1.0" edition = "2021" license = "MIT" description = "Downloads Gitlab artifacts" homepage = "https://gitlab.com/Kores/gi-get-artifact" repository = "https://gitlab.com/Kores/gi-get-artifact" readme = "README.md" keywords = ["gitlab", "download-artifact"] categories = ["api-bindings"] documentation = "https://docs.rs/gi-get-artifact/" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] tokio = { version = "1.19.2", features = ["full"] } tokio-util = { version = "0.7.3", features = ["compat"] } reqwest = { version = "0.11.11", features = [ "stream" ] } clap = { version = "3", features = ["derive"] } async-tar = "0.4.2" async-compression = { version = "0.3.14", features = ["futures-io"] } async_zip = "0.0.7" futures = "0.3" futures-core = "0.3" futures-async-stream = "0.2"