Skip to content

Commit d6d3c0b

Browse files
authored
Merge pull request #960 from alex/fix-minimal-versions
Fix compilation with specified minimal versions
2 parents f35a3bb + e672ef4 commit d6d3c0b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ log = "0.4.8"
2323
libgit2-sys = { path = "libgit2-sys", version = "0.15.2" }
2424

2525
[target."cfg(all(unix, not(target_os = \"macos\")))".dependencies]
26-
openssl-sys = { version = "0.9.0", optional = true }
26+
openssl-sys = { version = "0.9.45", optional = true }
2727
openssl-probe = { version = "0.1", optional = true }
2828

2929
[dev-dependencies]

Diff for: libgit2-sys/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ libssh2-sys = { version = "0.3.0", optional = true }
2626
libz-sys = { version = "1.1.0", default-features = false, features = ["libc"] }
2727

2828
[build-dependencies]
29-
pkg-config = "0.3.7"
29+
pkg-config = "0.3.15"
3030
cc = { version = "1.0.43", features = ['parallel'] }
3131

3232
[target.'cfg(unix)'.dependencies]
33-
openssl-sys = { version = "0.9", optional = true }
33+
openssl-sys = { version = "0.9.45", optional = true }
3434

3535
[features]
3636
ssh = ["libssh2-sys"]

0 commit comments

Comments
 (0)