This commit is contained in:
Yoshua Wuyts 2020-04-11 17:27:48 +02:00
parent 65f84e3c22
commit 430a1c6a67
3 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,5 @@
[package]
authors = ["Aaron Turon <aturon@mozilla.com>"]
authors = ["Aaron Turon <aturon@mozilla.com>", "Yoshua Wuyts <yoshuawuyts@gmail.com>"]
description = "Types and traits for standardizing async HTTP services"
repository = "https://github.com/rustasync/http-service"
documentation = "https://docs.rs/http-service"
@ -13,7 +13,7 @@ readme = "README.md"
edition = "2018"
license = "MIT OR Apache-2.0"
name = "http-service"
version = "0.4.0"
version = "0.5.0"
[workspace]
members = ["http-service-mock", "http-service-h1"]

View File

@ -11,7 +11,7 @@ documentation = "https://docs.rs/http-service-h1"
version = "0.1.0"
[dependencies]
http-service = { version = "0.4.0", path = ".." }
http-service = { version = "0.5.0", path = ".." }
http-types = "1.0.1"
async-h1 = "1.1.0"
async-std = { version = "1.5.0", default-features = false, features = ["std"] }

View File

@ -9,8 +9,8 @@ license = "MIT OR Apache-2.0"
name = "http-service-mock"
repository = "https://github.com/http-rs/http-service"
documentation = "https://docs.rs/http-service-mock"
version = "0.4.0"
version = "0.5.0"
[dependencies]
futures = "0.3.1"
http-service = { version = "0.4.0", path = ".." }
http-service = { version = "0.5.0", path = ".." }