-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
43 lines (38 loc) · 1.08 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "cargo-clone-crate"
version = "0.1.9"
authors = ["Eric Huss <[email protected]>"]
description = "Cargo subcommand to clone a repo from the registry."
homepage = "https://github.com/ehuss/cargo-clone-crate"
repository = "https://github.com/ehuss/cargo-clone-crate"
readme = "README.md"
categories = ["development-tools::cargo-plugins"]
keywords = ["cargo"]
license = "MIT"
edition = "2021"
include = ["/src"]
[dependencies]
anyhow = "1.0.37"
clap = { version = "4.4.6", optional = true, features = ["cargo"] }
env_logger = { version = "0.10.0", optional = true }
flate2 = "1.0.19"
log = "0.4.11"
regex = "1.4.2"
reqwest = { version = "0.11.0", features = ["blocking", "json"], default-features = false }
semver = "1"
serde_json = "1.0.61"
tar = { version = "0.4.30", default-features = false }
[dev-dependencies]
tempfile = "3.1.0"
[features]
bin = ["dep:clap", "dep:env_logger"]
default = ["bin", "reqwest/default-tls"]
rustls = ["reqwest/rustls-tls"]
[lib]
name = "cargo_clone"
test = false
[[bin]]
name = "cargo-clone"
path = "src/main.rs"
test = false
required-features = ["default"]