-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (53 loc) · 1.67 KB
/
Cargo.toml
File metadata and controls
61 lines (53 loc) · 1.67 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "httpsig"
version.workspace = true
edition.workspace = true
description = "Implementation of IETF RFC 9421 of http message signatures"
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
[features]
default = []
rsa-signature = ["rsa"]
[dependencies]
thiserror = { version = "2.0.18" }
tracing = { version = "0.1.44" }
rustc-hash = { version = "2.1.1" }
indexmap = { version = "2.11.4" }
rand = { version = "0.10.0" }
# crypto
pkcs8 = { version = "0.10.2", default-features = false, features = ["pem"] }
spki = { version = "0.7.3", default-features = false, features = ["pem"] }
sec1 = { version = "0.7.3", default-features = false, features = ["der"] }
ed25519-compact = { version = "2.2.0", default-features = false, features = [
"random",
] }
ecdsa = { version = "0.16.9", default-features = false, features = [
"arithmetic",
] }
p256 = { version = "0.13.2", default-features = false, features = [
"arithmetic",
"ecdsa",
] }
p384 = { version = "0.13.1", default-features = false, features = [
"arithmetic",
"ecdsa",
] }
hmac = { version = "0.12.1" }
sha2 = { version = "0.10.9", default-features = false }
bytes = { version = "1.11.1" }
# rsa is optional
rsa = { version = "0.10.0-rc.15", default-features = false, optional = true, features = [
"encoding",
"sha2",
] }
# encoding
base64 = { version = "0.22.1" }
# for rfc8941 structured field values
sfv = { version = "0.14.0" }
[dev-dependencies]
rand-085 = { package = "rand", version = "0.8.5" } # testing only