Skip to content

Commit 9e2a00d

Browse files
committed
Remove pinned openssl
sfackler/rust-openssl#1645 is finally resolved!
1 parent 7efc525 commit 9e2a00d

File tree

2 files changed

+5
-11
lines changed

2 files changed

+5
-11
lines changed

libssh-rs-sys/Cargo.toml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libssh-rs-sys"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
authors = ["Wez Furlong"]
55
edition = "2018"
66
links = "libssh"
@@ -16,10 +16,7 @@ cc = "1.0"
1616

1717
[dependencies]
1818
libz-sys = { optional=true, version = "1.1", default-features = false, features = ["libc"] }
19-
# Pinned on this last version with openssl-src-300 until a newer release
20-
# is made that unblocks it.
21-
# <https://github.com/sfackler/rust-openssl/pull/1578>
22-
openssl-sys = "=0.9.71"
19+
openssl-sys = "0.9.93"
2320

2421
[features]
2522
vendored = ["libz-sys"]

libssh-rs/Cargo.toml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libssh-rs"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
edition = "2018"
55
repository = "https://github.com/wez/libssh-rs"
66
description = "Bindings to the libssh library"
@@ -10,12 +10,9 @@ license = "MIT"
1010

1111
[dependencies]
1212
bitflags = "1.3"
13-
libssh-rs-sys = { version = "0.2.0", path = "../libssh-rs-sys" }
13+
libssh-rs-sys = { version = "0.2.1", path = "../libssh-rs-sys" }
1414
thiserror = "1.0"
15-
# Pinned on this last version with openssl-src-300 until a newer release
16-
# is made that unblocks it.
17-
# <https://github.com/sfackler/rust-openssl/pull/1578>
18-
openssl-sys = "=0.9.71"
15+
openssl-sys = "0.9.93"
1916

2017
[features]
2118
vendored = ["libssh-rs-sys/vendored"]

0 commit comments

Comments
 (0)