Skip to content
This repository has been archived by the owner on Apr 6, 2021. It is now read-only.

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
- Closes #23
- Closes #22
  • Loading branch information
ChriFo committed Sep 27, 2020
1 parent a0698f8 commit 992356d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ build = "build.rs"

[dependencies]
actix-rt = "1.1.1"
actix-web = { version = "2.0.0", default-features = false }
actix-web = { version = "3.0.2", default-features = false }
anyhow = "1.0.32"
bytes = "0.5.6"
crossbeam-channel = "0.4.3"
crossbeam-channel = "0.4.4"
futures = "0.3.5"
http = "0.2.1"
rand = "0.7.3"

[build-dependencies]
skeptic = "0.13.4"
skeptic = { git = "https://github.com/budziq/rust-skeptic.git", branch = "tempfile" }

[dev-dependencies]
skeptic = "0.13.4"
ureq = { version = "1.4.0", default-features = false }
skeptic = { git = "https://github.com/budziq/rust-skeptic.git", branch = "tempfile" }
ureq = { version = "1.4.1", default-features = false }
2 changes: 1 addition & 1 deletion src/helper.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ where
/// Reads bytes from HttpResponse.
pub async fn read_body<B>(mut res: HttpResponse<B>) -> Result<Bytes, Error>
where
B: MessageBody,
B: MessageBody + Unpin,
{
let mut body = res.take_body();
let mut bytes = BytesMut::new();
Expand Down

0 comments on commit 992356d

Please sign in to comment.