-
Notifications
You must be signed in to change notification settings - Fork 401
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #425 from cuviper/libgit2-0.28
Update to libgit2 0.28.2
- Loading branch information
Showing
19 changed files
with
227 additions
and
279 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
[submodule "libgit2-sys/libgit2"] | ||
path = libgit2-sys/libgit2 | ||
url = https://github.com/libgit2/libgit2 | ||
branch = maint/v0.28 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
|
||
name = "git2" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
authors = ["Josh Triplett <[email protected]>", "Alex Crichton <[email protected]>"] | ||
license = "MIT/Apache-2.0" | ||
readme = "README.md" | ||
|
@@ -23,7 +23,7 @@ url = "1.0" | |
bitflags = "1.0" | ||
libc = "0.2" | ||
log = "0.4" | ||
libgit2-sys = { path = "libgit2-sys", version = "0.7.11" } | ||
libgit2-sys = { path = "libgit2-sys", version = "0.8.0" } | ||
|
||
[target."cfg(all(unix, not(target_os = \"macos\")))".dependencies] | ||
openssl-sys = { version = "0.9.0", optional = true } | ||
|
@@ -39,10 +39,9 @@ thread-id = "3.3.0" # remove when we work with minimal-versions without it | |
|
||
[features] | ||
unstable = [] | ||
default = ["ssh", "https", "curl", "ssh_key_from_memory"] | ||
default = ["ssh", "https", "ssh_key_from_memory"] | ||
ssh = ["libgit2-sys/ssh"] | ||
https = ["libgit2-sys/https", "openssl-sys", "openssl-probe"] | ||
curl = ["libgit2-sys/curl"] | ||
vendored-openssl = ["openssl-sys/vendored"] | ||
ssh_key_from_memory = ["libgit2-sys/ssh_key_from_memory"] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
|
||
name = "git2-curl" | ||
version = "0.9.0" | ||
version = "0.10.0" | ||
authors = ["Josh Triplett <[email protected]>", "Alex Crichton <[email protected]>"] | ||
license = "MIT/Apache-2.0" | ||
repository = "https://github.com/rust-lang/git2-rs" | ||
|
@@ -16,7 +16,7 @@ Intended to be used with the git2 crate. | |
curl = "0.4" | ||
url = "1.0" | ||
log = "0.4" | ||
git2 = { path = "..", version = "0.8", default-features = false } | ||
git2 = { path = "..", version = "0.9", default-features = false } | ||
|
||
[dev-dependencies] | ||
civet = "0.11" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "libgit2-sys" | ||
version = "0.7.11" | ||
version = "0.8.0" | ||
authors = ["Josh Triplett <[email protected]>", "Alex Crichton <[email protected]>"] | ||
links = "git2" | ||
build = "build.rs" | ||
|
@@ -16,13 +16,12 @@ name = "libgit2_sys" | |
path = "lib.rs" | ||
|
||
[dependencies] | ||
curl-sys = { version = "0.4.10", optional = true } | ||
libc = "0.2" | ||
libssh2-sys = { version = "0.2.11", optional = true } | ||
libz-sys = "1.0.22" | ||
|
||
[build-dependencies] | ||
pkg-config = "0.3" | ||
pkg-config = "0.3.7" | ||
cc = "1.0.25" | ||
|
||
[target.'cfg(unix)'.dependencies] | ||
|
@@ -31,5 +30,4 @@ openssl-sys = { version = "0.9", optional = true } | |
[features] | ||
ssh = ["libssh2-sys"] | ||
https = ["openssl-sys"] | ||
curl = ["curl-sys"] | ||
ssh_key_from_memory = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.