blob: cffced663fc760f2cee9f14fbdc3d20fb4df8b09 (
plain)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies
#
# If you believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)
[package]
edition = "2018"
name = "hawk"
version = "3.2.1"
authors = ["Jonas Finnemann Jensen <jopsen@gmail.com>", "Dustin J. Mitchell <dustin@mozilla.com>"]
build = "build.rs"
exclude = ["docker/*", ".taskcluster.yml", ".git*"]
description = "Hawk Implementation for Rust"
homepage = "https://docs.rs/hawk/"
documentation = "https://docs.rs/hawk/"
readme = "README.md"
license = "MPL-2.0"
repository = "https://github.com/taskcluster/rust-hawk"
[dependencies.anyhow]
version = "1.0"
[dependencies.base64]
version = "0.12"
[dependencies.log]
version = "0.4"
[dependencies.once_cell]
version = "1.4"
[dependencies.openssl]
version = "0.10.20"
optional = true
[dependencies.ring]
version = "0.16.0"
optional = true
[dependencies.thiserror]
version = "1.0"
[dependencies.url]
version = "2.1"
[dev-dependencies.pretty_assertions]
version = "^0.6.1"
[features]
default = ["use_ring"]
use_openssl = ["openssl"]
use_ring = ["ring"]
|