-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (31 loc) · 792 Bytes
/
Cargo.toml
File metadata and controls
34 lines (31 loc) · 792 Bytes
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
[package]
name = "hawk"
version = "5.0.1"
authors = [
"Jonas Finnemann Jensen <jopsen@gmail.com>",
"Dustin J. Mitchell <dustin@mozilla.com>",
]
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 = "2021"
build = "build.rs"
exclude = ["docker/*", ".taskcluster.yml", ".git*"]
[dev-dependencies]
pretty_assertions = "^1.0.0"
[features]
default = ["use_ring"]
use_ring = ["ring"]
use_openssl = ["openssl"]
[dependencies]
base64 = "0.22"
ring = { version = "0.17.0", optional = true }
openssl = { version = "0.10.20", optional = true }
url = "2.1"
thiserror = "2.0"
anyhow = "1.0"
once_cell = "1.4"
log = "0.4"