Skip to content

Commit

Permalink
Build CLI: Disable git2 default features
Browse files Browse the repository at this point in the history
* Crate `git2` is only used to determine chipmunk root path and no
  feature is needed to achieve that
* `git2` default features have dependency on openssl library and fails
  to be installed on MacOS systems without installing this library.
  • Loading branch information
AmmarAbouZor authored and marcmo committed Sep 12, 2024
1 parent 51352e8 commit 4d5c00b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 37 deletions.
36 changes: 0 additions & 36 deletions cli/Cargo.lock

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

2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ clap = { version = "4.4.4", features = ["derive"] }
console = "0.15.7"
fs_extra = "1.3.0"
futures = "0.3.28"
git2 = "0.18.2"
git2 = { version = "0.18.2", default-features = false }
indicatif = "0.17.8"
tokio = { version = "1.36.0", features = ["full"] }
tokio-util = { version = "0.7.11", features = ["rt"] }
Expand Down

0 comments on commit 4d5c00b

Please sign in to comment.