Skip to content

Commit

Permalink
fix: vendor libgit2 (#548)
Browse files Browse the repository at this point in the history
  • Loading branch information
morgante authored Oct 21, 2024
1 parent 5e7ca26 commit 52800c7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
7 changes: 6 additions & 1 deletion crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,12 @@ indicatif-log-bridge = { version = "0.2.1" }
colored = { version = "2.0.4" }
log = { version = "0.4.19" }
env_logger = { version = "0.10.0" }
git2 = { version = "0.19.0" }
git2 = { version = "0.19.0", default-features = false, features = [
"vendored-openssl",
"vendored-libgit2",
"ssh",
"https",
] }
regex = { version = "1.7.3" }
grit-util = { path = "../grit-util" }
marzano-core = { path = "../core", features = [
Expand Down
3 changes: 3 additions & 0 deletions crates/gritmodule/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ futures = { version = "0.3.29" }
rand = { version = "0.8.5" }
git2 = { version = "0.19.0", default-features = false, features = [
"vendored-openssl",
"vendored-libgit2",
"ssh",
"https",
] }
lazy_static = { version = "1.4.0" }
regex = { version = "1.7.3" }
Expand Down

0 comments on commit 52800c7

Please sign in to comment.