-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
31 lines (24 loc) · 833 Bytes
/
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
[package]
name = "git-grab"
authors = ["Wesley Moore <[email protected]>"]
version = "3.0.0"
edition = "2018"
homepage = "https://github.com/wezm/git-grab"
repository = "https://github.com/wezm/git-grab.git"
readme = "README.md"
license = "MIT OR Apache-2.0"
description = "A tool to clone git repositories to a standard location, organised by domain name and path"
keywords = ["git", "cli"]
categories = ["command-line-utilities", "development-tools"]
[dependencies]
home = "0.5.3"
pico-args = "0.5.0"
url = "2.2.2"
[target.'cfg(target_family = "windows")'.dependencies]
clipboard-win = { version = "5.3.1", optional = true }
[features]
default = ["clipboard"]
# Ideally this would only be present on windows
# Requires target dependant features:
# https://github.com/rust-lang/cargo/issues/1197
clipboard = ["dep:clipboard-win"]