Skip to content

Commit

Permalink
build(deps): disable default features for git2 (#62)
Browse files Browse the repository at this point in the history
The default features of the crate handle https and ssh networking. The
features aren't needed since git-cm only accesses the repository's 
index and blob files. 

Partial-close #2
  • Loading branch information
SirWindfield authored Mar 24, 2021
1 parent 3830ad6 commit 9321181
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 48 deletions.
47 changes: 0 additions & 47 deletions 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ console = "0.14.1"
ctrlc = { version = "3.1.8", features = ["termination"] }
dialoguer = "0.8.0"
edit = "0.1.3"
git2 = { version = "0.13.17", features = ["vendored-openssl"] }
git2 = { version = "0.13.17", default-features = false }
once_cell = "1.7.2"
serde = { version = "1.0.125", features = ["derive"] }

0 comments on commit 9321181

Please sign in to comment.