-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCargo.toml
50 lines (46 loc) · 1.48 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
44
45
46
47
48
49
50
[package]
name = "git-workspace"
version = "1.9.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/**"]
rust-version = "1.74.1"
[dependencies]
toml = "0.8.19"
serde = { version = "1.0.217", features = ["derive"] }
anyhow = "1.0.95"
rayon = "1.10.0"
graphql_client = "0.14.0"
walkdir = "2.5.0"
fs_extra = "1.3.0"
indicatif = { version = "0.17.9", features = ["rayon"] }
console = { version = "0.15.10", features = [
"ansi-parsing",
], default-features = false } # We don't care about unicode widths
atomic-counter = "1.0.1"
ureq = { version = "2.12.1", features = ["json", "native-certs", "brotli"] }
serde_json = "1.0.135"
globset = "0.4.15"
git2 = { version = "0.20.0" }
regex = "1.11.1"
clap = { version = "4.5.26", features = ["derive", "env"] }
[dev-dependencies]
rstest = "0.24.0"
tempfile = "3.14.0"
testcontainers = { version = "0.23.1", features = ["blocking"] }
testcontainers-modules = { version = "0.11.4", features = ["gitea"] }
reqwest = { version = "0.12.12", features = ["blocking", "brotli", "json"] }
ssh-key = { version = "0.6.7", features = ["ed25519"] }
rand = "0.8.5"
base64 = "0.22.1"
[target."cfg(unix)".dependencies]
expanduser = "1.2.2"
[profile.release]
lto = true
codegen-units = 1