forked from orf/git-workspace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (37 loc) · 1.12 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
[package]
name = "git-workspace"
version = "1.3.1"
readme = "README.md"
repository = "https://github.com/orf/git-workspace"
authors = ["Tom Forbes <[email protected]>"]
edition = "2021"
description = "Manage and update personal and work git repos from multiple providers"
license = "MIT"
categories = [
"development-tools",
]
keywords = ["cli", "git"]
exclude = ["workspace/**", "images/**", ".github/**"]
[dependencies]
toml = "0.7.2"
serde = { version = "1.0.155", features = ["derive"] }
anyhow = "1.0.66"
structopt = "0.3.26"
rayon = "1.6.0"
graphql_client = "0.13.0"
walkdir = "2.3.2"
fs_extra = "1.2.0"
indicatif = { version = "0.17.2", features = ["rayon"] }
console = { version = "0.15.2", features = ["ansi-parsing"], default_features = false } # We don't care about unicode widths
atomic-counter = "1.0.1"
ureq = { version = "2.5.0", features = ["json"] }
serde_json = "1.0.94"
globset = "0.4.9"
# Workaround for https://github.com/rust-lang/git2-rs/issues/838
git2 = { version = "0.18.0", default_features = false }
regex = "1.7.1"
dunce = "1.0.3"
[target."cfg(unix)".dependencies]
expanduser = "1.2.2"
[profile.release]
lto = true