forked from orf/git-workspace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (35 loc) · 1.05 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
[package]
name = "git-workspace"
version = "1.7.0"
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.8.19"
serde = { version = "1.0.210", features = ["derive"] }
anyhow = "1.0.89"
structopt = "0.3.26"
rayon = "1.10.0"
graphql_client = "0.14.0"
walkdir = "2.5.0"
fs_extra = "1.3.0"
indicatif = { version = "0.17.8", features = ["rayon"] }
console = { version = "0.15.8", features = [
"ansi-parsing",
], default-features = false } # We don't care about unicode widths
atomic-counter = "1.0.1"
ureq = { version = "2.10.1", features = ["json", "native-certs", "brotli"] }
serde_json = "1.0.128"
globset = "0.4.15"
git2 = { version = "0.19.0" }
regex = "1.11.0"
[target."cfg(unix)".dependencies]
expanduser = "1.2.2"
[profile.release]
lto = true