resolve build errors on aur
Authored by
mfwolffe <wolffemf@dukes.jmu.edu>
- SHA
c422b3c6984ef96755c44fb4f9fd8ba7133a5ad1- Parents
-
4c3f5f3 - Tree
dd895f4
c422b3c
c422b3c6984ef96755c44fb4f9fd8ba7133a5ad14c3f5f3
dd895f4| 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.1.0" | |
| 288 | +version = "0.2.1" | |
| 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.1.0" | |
| 3 | +version = "0.2.1" | |
| 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 | |
| 18 | -git2 = "0.20" | |
| 17 | +# Git operations (vendored-libgit2 bundles libgit2 for portable builds) | |
| 18 | +git2 = { version = "0.20", features = ["vendored-libgit2"] } | |
| 19 | 19 | |
| 20 | 20 | # Error handling |
| 21 | 21 | anyhow = "1.0" |