tenseleyflow/fussr / c422b3c

Browse files

resolve build errors on aur

Authored by mfwolffe <wolffemf@dukes.jmu.edu>
SHA
c422b3c6984ef96755c44fb4f9fd8ba7133a5ad1
Parents
4c3f5f3
Tree
dd895f4

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.1.0"
288
+version = "0.2.1"
289289
 dependencies = [
290290
  "anyhow",
291291
  "clap",
Cargo.tomlmodified
@@ -1,6 +1,6 @@
11
 [package]
22
 name = "fussr"
3
-version = "0.1.0"
3
+version = "0.2.1"
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
18
-git2 = "0.20"
17
+# Git operations (vendored-libgit2 bundles libgit2 for portable builds)
18
+git2 = { version = "0.20", features = ["vendored-libgit2"] }
1919
 
2020
 # Error handling
2121
 anyhow = "1.0"