-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
87 lines (73 loc) · 1.94 KB
/
Cargo.toml
File metadata and controls
87 lines (73 loc) · 1.94 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[package]
name = "multigit"
version = "2.0.0"
edition = "2021"
authors = ["TIVerse Team <team@tiverse.dev>"]
description = "Production-ready multi-remote Git synchronization tool - push, pull, and sync across GitHub, GitLab, Bitbucket, Codeberg, and Gitea"
homepage = "https://github.com/TIVerse/multigit"
repository = "https://github.com/TIVerse/multigit"
readme = "README.md"
license = "MIT"
keywords = ["git", "cli", "sync", "multi-remote"]
categories = ["command-line-utilities", "development-tools"]
rust-version = "1.70"
# Binary definitions - both 'multigit' and 'mg' use the same code
[[bin]]
name = "multigit"
path = "src/main.rs"
[[bin]]
name = "mg"
path = "src/main.rs"
[dependencies]
# Async runtime
tokio = { version = "1.49", features = ["full"] }
futures = "0.3"
async-trait = "0.1"
# Error handling
anyhow = "1.0"
thiserror = "2.0"
# Git operations
git2 = { version = "0.20", features = ["vendored-libgit2"] }
# CLI
clap = { version = "4.5", features = ["derive", "cargo"] }
clap_complete = "4.5"
dialoguer = { version = "0.12", features = ["fuzzy-select"] }
# API & Networking
reqwest = { version = "0.11", features = ["json", "rustls-tls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.9"
# Security
keyring = "2.2"
age = "0.10"
base64 = "0.21"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
# TUI
ratatui = "0.28"
crossterm = "0.29"
indicatif = "0.17"
# Utilities
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1.19", features = ["v4", "serde"] }
regex = "1.10"
url = "2.5"
urlencoding = "2.1"
dirs = "5.0"
sled = "0.34"
# Unix signals (for daemon)
[target.'cfg(unix)'.dependencies]
nix = { version = "0.27", features = ["signal"] }
[dev-dependencies]
mockito = "1.7"
tempfile = "3.24"
assert_cmd = "2.1"
predicates = "3.0"
pretty_assertions = "1.4"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true
panic = "abort"