Bump version

This commit is contained in:
asonix 2020-04-23 12:57:14 -05:00
parent 90660b7f19
commit 2daa7f8077
2 changed files with 3 additions and 4 deletions

View file

@ -1,7 +1,7 @@
[package]
name = "http-signature-normalization-actix"
description = "An HTTP Signatures library that leaves the signing to you"
version = "0.3.0-alpha.10"
version = "0.3.0-alpha.11"
authors = ["asonix <asonix@asonix.dog>"]
license-file = "LICENSE"
readme = "README.md"
@ -38,6 +38,5 @@ sha3 = { version = "0.8", optional = true }
thiserror = "1.0"
[dev-dependencies]
actix = "0.10.0-alpha.1"
actix-rt = "1.0.0"
pretty_env_logger = "0.4"

View file

@ -13,10 +13,10 @@ This crate provides extensions the ClientRequest type from Actix Web, and provid
#### First, add this crate to your dependencies
```toml
actix = "0.10.0-alpha.1"
actix-rt = "1.1.0"
actix-web = "3.0.0-alpha.1"
thiserror = "0.1"
http-signature-normalization-actix = { version = "0.3.0-alpha.10", default-features = false, features = ["sha-2"] }
http-signature-normalization-actix = { version = "0.3.0-alpha.11", default-features = false, features = ["sha-2"] }
sha2 = "0.8"
```