fix: properly enable vendored-libgit2 feature
- SHA
a4735c47c19ae5fcf0258dd22a574ece324616cf- Parents
-
1ddd637 - Tree
cd255a3
a4735c4
a4735c47c19ae5fcf0258dd22a574ece324616cf1ddd637
cd255a3| Status | File | + | - |
|---|---|---|---|
| M |
Cargo.lock
|
1 | 10 |
| M |
Cargo.toml
|
3 | 3 |
| M |
fussr.spec
|
1 | 1 |
Cargo.lockmodified@@ -285,7 +285,7 @@ dependencies = [ | ||
| 285 | 285 | |
| 286 | 286 | [[package]] |
| 287 | 287 | name = "fussr" |
| 288 | -version = "0.2.8" | |
| 288 | +version = "0.2.9" | |
| 289 | 289 | dependencies = [ |
| 290 | 290 | "anyhow", |
| 291 | 291 | "clap", |
@@ -318,8 +318,6 @@ dependencies = [ | ||
| 318 | 318 | "libc", |
| 319 | 319 | "libgit2-sys", |
| 320 | 320 | "log", |
| 321 | - "openssl-probe", | |
| 322 | - "openssl-sys", | |
| 323 | 321 | "url", |
| 324 | 322 | ] |
| 325 | 323 | |
@@ -517,7 +515,6 @@ dependencies = [ | ||
| 517 | 515 | "libc", |
| 518 | 516 | "libssh2-sys", |
| 519 | 517 | "libz-sys", |
| 520 | - "openssl-sys", | |
| 521 | 518 | "pkg-config", |
| 522 | 519 | ] |
| 523 | 520 | |
@@ -601,12 +598,6 @@ version = "1.70.2" | ||
| 601 | 598 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 602 | 599 | checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" |
| 603 | 600 | |
| 604 | -[[package]] | |
| 605 | -name = "openssl-probe" | |
| 606 | -version = "0.1.6" | |
| 607 | -source = "registry+https://github.com/rust-lang/crates.io-index" | |
| 608 | -checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" | |
| 609 | - | |
| 610 | 601 | [[package]] |
| 611 | 602 | name = "openssl-sys" |
| 612 | 603 | version = "0.9.111" |
Cargo.tomlmodified@@ -1,6 +1,6 @@ | ||
| 1 | 1 | [package] |
| 2 | 2 | name = "fussr" |
| 3 | -version = "0.2.8" | |
| 3 | +version = "0.2.9" | |
| 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 - use vendored libgit2 for maximum compatibility | |
| 18 | +git2 = { version = "0.20", default-features = false, features = ["vendored-libgit2", "ssh"] } | |
| 19 | 19 | |
| 20 | 20 | # Error handling |
| 21 | 21 | anyhow = "1.0" |
fussr.specmodified@@ -1,5 +1,5 @@ | ||
| 1 | 1 | Name: fussr |
| 2 | -Version: 0.2.8 | |
| 2 | +Version: 0.2.9 | |
| 3 | 3 | Release: 1%{?dist} |
| 4 | 4 | Summary: A git staging TUI tool - Rust port of fuss |
| 5 | 5 | |