[package] name = "iron-hmac" version = "0.6.0" authors = ["Joe Wilm "] description = "HMAC middleware for the Iron HTTP framework" license = "MIT OR Apache-2.0" readme = "README.md" repository = "https://github.com/jwilm/iron-hmac" documentation = "https://jwilm.github.io/iron-hmac/latest/iron_hmac/" [features] default = ["hmac-rust-crypto"] # Use openssl HMAC/SHA256 implementations hmac-openssl = ["openssl"] # Use rust-crypto HMAC/SHA256 implementations hmac-rust-crypto = ["rust-crypto"] [dependencies] constant_time_eq = "0.1" iron = { version = "0.6", default-features = false } persistent = "0.4" rustc-serialize = "0.3" url = "1.6" [dependencies.openssl] version = "0.9" optional = true [dependencies.rust-crypto] version = "0.2" optional = true [dependencies.bodyparser] version = "0.8" [dev-dependencies.hyper] version = "0.11" default-features = false [dev-dependencies.reqwest] version = "0.8"