forked from Xuanwo/reqsign
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (51 loc) · 1.38 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[package]
authors = ["Xuanwo <[email protected]>"]
categories = ["command-line-utilities", "web-programming"]
description = "Signing API requests without effort."
documentation = "https://docs.rs/reqsign"
edition = "2021"
license = "Apache-2.0"
name = "reqsign"
version = "0.7.3"
[package.metadata.docs.rs]
all-features = true
[features]
http_types_request = ["http-types"]
reqwest_blocking_request = ["reqwest/blocking"]
reqwest_request = ["reqwest"]
[[bench]]
harness = false
name = "aws"
[dependencies]
anyhow = "1"
backon = "0.2"
base64 = "0.20"
bytes = "1"
dirs = "4"
form_urlencoded = "1"
hex = "0.4"
hmac = "0.12"
http = "0.2"
http-types = { version = "2", optional = true }
jsonwebtoken = "8"
log = "0.4"
once_cell = "1"
percent-encoding = "2"
quick-xml = { version = "0.26", features = ["serialize"] }
reqwest = { version = "0.11", optional = true }
rust-ini = "0.18"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha1 = "0.10"
sha2 = "0.10"
time = { version = "0.3", features = ["macros", "formatting", "parsing"] }
ureq = { version = "2.5", default-features = false }
[dev-dependencies]
aws-sigv4 = "0.52"
criterion = { version = "0.4", features = ["async_tokio", "html_reports"] }
dotenv = "0.15"
env_logger = "0.10"
reqwest = { version = "0.11", features = ["blocking", "json"] }
temp-env = "0.3"
tokio = { version = "1", features = ["full"] }
ureq = { version = "2.5" }