forked from junkurihara/httpsig-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (36 loc) · 1.15 KB
/
Copy pathCargo.toml
File metadata and controls
44 lines (36 loc) · 1.15 KB
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
[package]
name = "httpsig-hyper"
version.workspace = true
edition.workspace = true
description = "Hyper extension for http message signatures (RFC9421)"
authors.workspace = true
homepage.workspace = true
repository.workspace = true
license.workspace = true
readme.workspace = true
rust-version.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
httpsig = { path = "../httpsig", version = "0.0.17" }
thiserror = { version = "2.0.11" }
tracing = { version = "0.1.41" }
futures = { version = "0.3.31", default-features = false, features = [
"std",
"async-await",
] }
indexmap = { version = "2.7.0" }
# content digest with rfc8941 structured field values
sha2 = { version = "0.10.8", default-features = false }
sfv = { version = "0.9.4" }
# encoding
base64 = { version = "0.22.1" }
# for request and response headers
http = { version = "1.2.0" }
http-body = { version = "1.0.1" }
http-body-util = { version = "0.1.2" }
bytes = { version = "1.9.0" }
[dev-dependencies]
tokio = { version = "1.43.0", default-features = false, features = [
"macros",
"rt-multi-thread",
] } # testing only