-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (31 loc) · 924 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
31
32
[package]
name = "git-collage"
description = "A tool for selectively mirroring Git repositories"
version = "0.4.3"
edition = "2021"
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.93"
async-trait = "0.1.83"
chrono = "0.4.38"
clap = { version = "~4.4", features = ["derive"] }
clap_complete = "~4.4"
crossbeam-channel = "0.5.13"
enum_dispatch = "0.3.13"
env_logger = "0.11.5"
futures = "0.3.31"
git2 = "0.19.0"
log = "0.4.22"
octocrab = "0.42.1"
rayon = "1.10.0"
regex = "1.11.1"
serde = { version = "1.0.215", features = ["derive"] }
serde_variant = "0.1.3"
tokio = { version = "1.41.1", features = ["macros", "rt-multi-thread"] }
toml = "0.8.19"
url = { version = "2.5.4", features = ["serde"] }