Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file.

## [2.0.0] - Unreleased
### Breaking changes
- Switched tokio version to 0.3.
- Removed `AsyncTlsStream` from [tokio-libtls]. `TlsStream` can now be used in all cases where `AsyncTlsStream` could previously.
- Removed `Error` from [tokio-libtls]. Now just use `libtls::TlsError` instead.

## [1.2.0] - 2020-04-09
### Added
- New with LibreSSL 3.1.0: Support for `TLSv1.3`,
Expand Down
6 changes: 3 additions & 3 deletions examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ edition = "2018"

[dev-dependencies]
futures = "0.3.4"
libtls = { path = "../libtls", version = "1.2.0" }
tokio-libtls = { path = "../tokio-libtls", version = "1.2.0" }
tokio = { version = "0.2.16", features = ["full"] }
libtls = { path = "../libtls", version = "2.0.0" }
tokio-libtls = { path = "../tokio-libtls", version = "2.0.0" }
tokio = { version = "0.3.4", features = ["full"] }

[[example]]
name = "config"
Expand Down
2 changes: 1 addition & 1 deletion libtls-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libtls-sys"
version = "1.2.0"
version = "2.0.0"
authors = ["Reyk Floeter <contact@reykfloeter.com>"]
edition = "2018"
license = "ISC"
Expand Down
6 changes: 3 additions & 3 deletions libtls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libtls"
version = "1.2.0"
version = "2.0.0"
authors = ["Reyk Floeter <contact@reykfloeter.com>"]
edition = "2018"
license = "ISC"
Expand All @@ -14,10 +14,10 @@ keywords = ["crypto", "tls", "ssl", "libressl", "openbsd"]
travis-ci = { repository = "reyk/rust-libtls", branch = "master" }

[dependencies]
libtls-sys = { path = "../libtls-sys", version = "1.2.0" }
libtls-sys = { path = "../libtls-sys", version = "2.0.0" }

[dev-dependencies]
rand = "0.7.3"

[build-dependencies]
libtls-sys = { path = "../libtls-sys", version = "1.2.0" }
libtls-sys = { path = "../libtls-sys", version = "2.0.0" }
12 changes: 6 additions & 6 deletions tokio-libtls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tokio-libtls"
version = "1.2.0"
version = "2.0.0"
authors = ["Reyk Floeter <contact@reykfloeter.com>"]
edition = "2018"
license = "ISC"
Expand All @@ -14,10 +14,10 @@ keywords = ["tokio", "tls", "ssl", "libressl", "openbsd"]
travis-ci = { repository = "reyk/rust-libtls", branch = "master" }

[dependencies]
futures = "0.3.4"
libtls = { path = "../libtls", version = "1.2.0" }
mio = "0.6.21"
tokio = { version = "0.2.16", features = ["io-driver", "tcp", "time"] }
futures = "0.3.8"
libtls = { path = "../libtls", version = "2.0.0" }
mio = "0.7.6"
tokio = { version = "0.3.4", features = ["net", "time"] }

[dev-dependencies]
tokio = { version = "0.2.16", features = ["full"] }
tokio = { version = "0.3.4", features = ["full"] }
77 changes: 0 additions & 77 deletions tokio-libtls/src/error.rs

This file was deleted.

Loading