Skip to content

Commit

Permalink
Merge pull request #28 from sfackler/tokio-02
Browse files Browse the repository at this point in the history
Update to async/await
  • Loading branch information
sfackler authored Sep 5, 2019
2 parents 0da366e + fd1346e commit 20707f6
Show file tree
Hide file tree
Showing 5 changed files with 158 additions and 283 deletions.
3 changes: 2 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ version: 2
jobs:
build:
docker:
- image: rust:1.26.0
- image: rustlang/rust:nightly
environment:
RUSTFLAGS: -D warnings
steps:
Expand All @@ -33,6 +33,7 @@ jobs:
- run: rustc --version > ~/rust-version
- *RESTORE_DEPS
- run: cargo test
- run: cargo test --no-default-features
- *SAVE_DEPS

workflows:
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
target/
Cargo.lock
.vscode/
.idea/
*.iml
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "hyper-openssl"
version = "0.7.1"
authors = ["Steven Fackler <[email protected]>"]
edition = "2018"
description = "Hyper TLS support via OpenSSL"
license = "MIT/Apache-2.0"
repository = "https://github.com/sfackler/hyper-openssl"
Expand All @@ -16,15 +17,14 @@ runtime = ["hyper/runtime"]
[dependencies]
antidote = "1.0.0"
bytes = "0.4"
hyper = { version = "0.12.14", default-features = false }
lazy_static = "1.0"
hyper = { version = "=0.13.0-alpha.1", default-features = false }
linked_hash_set = "0.1"
once_cell = "1.0"
openssl = "0.10.19"
openssl-sys = "0.9.26"
tokio-io = "0.1.2"
tokio-openssl = "0.3"
futures = "0.1.14"
tokio = "=0.2.0-alpha.4"
tokio-openssl = "=0.4.0-alpha.4"

[dev-dependencies]
hyper = "0.12"
tokio = "0.1"
futures-preview = "=0.3.0-alpha.18"
hyper = "=0.13.0-alpha.1"
Loading

0 comments on commit 20707f6

Please sign in to comment.