tenseleyflow/fussr / f380dc0

Browse files

Switch to system libgit2 for better distro compatibility

Authored by espadonne
SHA
f380dc07cc511524706c923fa067acfe18d1f323
Parents
a4735c4
Tree
0c55b18

2 changed files

StatusFile+-
M Cargo.lock 1 1
M Cargo.toml 3 3
Cargo.lockmodified
@@ -285,7 +285,7 @@ dependencies = [
285285
 
286286
 [[package]]
287287
 name = "fussr"
288
-version = "0.2.9"
288
+version = "0.2.10"
289289
 dependencies = [
290290
  "anyhow",
291291
  "clap",
Cargo.tomlmodified
@@ -1,6 +1,6 @@
11
 [package]
22
 name = "fussr"
3
-version = "0.2.9"
3
+version = "0.2.10"
44
 edition = "2021"
55
 description = "A git staging TUI tool - Rust port of fuss"
66
 authors = ["Matthew Wolffe"]
@@ -14,8 +14,8 @@ clap = { version = "4.5", features = ["derive"] }
1414
 ratatui = "0.29"
1515
 crossterm = "0.28"
1616
 
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"] }
1919
 
2020
 # Error handling
2121
 anyhow = "1.0"