Skip to content

Commit

Permalink
fix: remove cmake build dep from git plugin
Browse files Browse the repository at this point in the history
Replacing our custom nom parser for git data with `gix` implicitly
introduced a dependency on `cmake` to build `zlib-ng`. This commit
changes the features of `gix` to use the system zlib instead if present.

Signed-off-by: jlanson <[email protected]>
  • Loading branch information
j-lanson committed Dec 19, 2024
1 parent a02ceea commit 85652e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 37 deletions.
36 changes: 3 additions & 33 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 1 addition & 4 deletions plugins/git/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,7 @@ clap = { version = "4.5.23", features = ["derive"] }
hipcheck-sdk = { version = "0.2.0", path = "../../sdk/rust", features = [
"macros",
] }
gix = { version = "0.68.0", default-features = false, features = [
"basic",
"max-performance",
] }
gix = { version = "0.68.0", default-features = false, features = ["basic", "max-control", "zlib-stock"] }
jiff = { version = "0.1.14", features = ["serde"] }
log = "0.4.22"
once_cell = "1.10.0"
Expand Down

0 comments on commit 85652e4

Please sign in to comment.