-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (30 loc) · 1020 Bytes
/
Cargo.toml
File metadata and controls
31 lines (30 loc) · 1020 Bytes
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
[package]
name = "git-collage"
description = "A tool for selectively mirroring Git repositories"
version = "0.4.4"
edition = "2024"
readme = "README.md"
license = "MIT"
homepage = "https://github.com/DanNixon/git-collage"
repository = "https://github.com/DanNixon/git-collage"
categories = ["command-line-utilities", "development-tools"]
keywords = ["git", "mirror", "github"]
[dependencies]
anyhow = "1.0.100"
chrono = "0.4.43"
clap = { version = "4.5.23", features = ["derive"] }
clap_complete = { version = "4.5.23", features = ["unstable-dynamic"] }
crossbeam-channel = "0.5.15"
enum_dispatch = "0.3.13"
env_logger = "0.11.6"
futures = "0.3.31"
git2 = { version = "0.20.4", features = ["vendored-libgit2", "vendored-openssl"] }
log = "0.4.29"
octocrab = "0.49.5"
rayon = "1.11.0"
regex = "1.12.2"
serde = { version = "1.0.228", features = ["derive"] }
serde_variant = "0.1.3"
tokio = { version = "1.49.0", features = ["macros", "rt-multi-thread"] }
toml = "0.9.11"
url = { version = "2.5.8", features = ["serde"] }