http-signatures 0.1.2

An implementation of the HTTP Signatures RFC
Documentation
[package]
name = "http-signatures"
description = "An implementation of the HTTP Signatures RFC"
version = "0.1.2"
license = "GPL-3.0"
authors = ["Riley Trautman <riley.trautman@gmail.com>"]
repository = "https://github.com/asonix/http-signatures"
readme = "README.md"
keywords = ["web", "http", "signatures"]

[features]
default = []
use_hyper = ["hyper", "futures", "tokio-core"]
use_reqwest = ["reqwest"]
use_rocket = ["rocket", "rocket_codegen"]

[dependencies]
untrusted = "0.5"
base64 = "0.6"
hyper = { version = "0.11", optional = true }
futures = { version = "0.1", optional = true }
tokio-core = { version = "0.1", optional = true }
reqwest = { version = "0.8", optional = true }
rocket = { version = "0.3", optional = true }
rocket_codegen = { version = "0.3", optional = true }

[dependencies.ring]
version = "0.11"
features = ["rsa_signing"]