[package] name = "cargo-grab" version = "0.1.0" edition = "2021" description = "A cargo subcommand to download crates from crate registries" license = "MPL-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] anyhow = "1.0.72" clap = { version = "4.3.21", features = ["derive"] } flate2 = "1.0.26" fs_extra = "1.3.0" itertools = "0.11.0" lazy_static = "1.4.0" reqwest = "0.11.18" serde = { version = "1.0.183", features = ["derive"] } serde_json = "1.0.104" tar = "0.4.40" tokio = { version = "1.30.0", features = ["full"] } toml = "0.7.6"