forked from taskcluster/rust-hawk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (32 loc) · 796 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "hawk"
version = "3.2.1"
authors = ["Jonas Finnemann Jensen <[email protected]>", "Dustin J. Mitchell <[email protected]>"]
license = "MPL-2.0"
readme = "README.md"
repository = "https://github.com/taskcluster/rust-hawk"
documentation = "https://docs.rs/hawk/"
homepage = "https://docs.rs/hawk/"
description = "Hawk Implementation for Rust"
edition = "2018"
build = "build.rs"
exclude = [
"docker/*",
".taskcluster.yml",
".git*",
]
[dev-dependencies]
pretty_assertions = "^0.6.1"
[features]
default = ["use_ring"]
use_ring = ["ring"]
use_openssl = ["openssl"]
[dependencies]
base64 = "0.12"
ring = { version = "0.16.0", optional = true }
openssl = { version = "0.10.20", optional = true }
url = "2.1"
thiserror = "1.0"
anyhow = "1.0"
once_cell = "1.4"
log = "0.4"