forked from RAvenGEr/digest-access
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (29 loc) · 801 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
[package]
name = "digest-access"
version = "0.3.5"
authors = ["David Webb <[email protected]>"]
description = "HTTP Digest Access Authentication compliant with ITEF RFC2069, RFC2617 and RFC7616 for Rust"
repository = "https://github.com/RAvenGEr/digest-access"
license = "MIT OR Apache-2.0"
edition = "2021"
categories = ["authentication", "web-programming"]
keywords = ["http", "digest", "digest-access"]
readme = "README.md"
[[bench]]
name = "benchmark"
harness = false
[features]
default = ["from-headers"]
from-headers = ["http"]
[dependencies]
digest = "0.10"
hex = "0.4"
md-5 = "0.10"
rand = "0.8"
sha2 = "0.10"
http = { version = "1", optional = true }
[dev-dependencies]
criterion = "0.5"
reqwest = "0.12"
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
url = "2.1"