Switch to system libgit2 for better distro compatibility
- SHA
f380dc07cc511524706c923fa067acfe18d1f323- Parents
-
a4735c4 - Tree
0c55b18
f380dc0
f380dc07cc511524706c923fa067acfe18d1f323a4735c4
0c55b18| Status | File | + | - |
|---|---|---|---|
| M |
Cargo.lock
|
1 | 1 |
| M |
Cargo.toml
|
3 | 3 |
Cargo.lockmodified@@ -285,7 +285,7 @@ dependencies = [ | ||
| 285 | 285 | |
| 286 | 286 | [[package]] |
| 287 | 287 | name = "fussr" |
| 288 | -version = "0.2.9" | |
| 288 | +version = "0.2.10" | |
| 289 | 289 | dependencies = [ |
| 290 | 290 | "anyhow", |
| 291 | 291 | "clap", |
Cargo.tomlmodified@@ -1,6 +1,6 @@ | ||
| 1 | 1 | [package] |
| 2 | 2 | name = "fussr" |
| 3 | -version = "0.2.9" | |
| 3 | +version = "0.2.10" | |
| 4 | 4 | edition = "2021" |
| 5 | 5 | description = "A git staging TUI tool - Rust port of fuss" |
| 6 | 6 | authors = ["Matthew Wolffe"] |
@@ -14,8 +14,8 @@ clap = { version = "4.5", features = ["derive"] } | ||
| 14 | 14 | ratatui = "0.29" |
| 15 | 15 | crossterm = "0.28" |
| 16 | 16 | |
| 17 | -# Git operations - use vendored libgit2 for maximum compatibility | |
| 18 | -git2 = { version = "0.20", default-features = false, features = ["vendored-libgit2", "ssh"] } | |
| 17 | +# Git operations - use system libgit2 | |
| 18 | +git2 = { version = "0.20", default-features = false, features = ["ssh"] } | |
| 19 | 19 | |
| 20 | 20 | # Error handling |
| 21 | 21 | anyhow = "1.0" |