http-signature-normalization/http-signature-normalization-actix/Cargo.toml

24 lines
653 B
TOML
Raw Normal View History

2019-09-11 22:05:58 +00:00
[package]
name = "http-signature-normalization-actix"
description = "An HTTP Signatures library that leaves the signing to you"
version = "0.1.0"
authors = ["asonix <asonix@asonix.dog>"]
license-file = "../LICENSE"
readme = "../README.md"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2019-09-11 23:49:18 +00:00
[features]
default = []
digest = ["base64", "futures"]
2019-09-11 22:05:58 +00:00
[dependencies]
actix-web = "1.0"
2019-09-11 23:49:18 +00:00
base64 = { version = "0.10", optional = true }
2019-09-11 22:05:58 +00:00
http-signature-normalization = { version = "0.1.0", path = ".." }
2019-09-11 23:49:18 +00:00
futures = { version = "0.1", optional = true }
2019-09-11 23:06:36 +00:00
[dev-dependencies]
actix = "0.8"
futures = "0.1"