-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
41 lines (35 loc) · 1.21 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
[package]
name = "compact_jwt"
version = "0.4.3"
edition = "2021"
authors = ["William Brown <william@blackhats.net.au>"]
description = "Minimal implementation of JWT for OIDC and other applications"
repository = "https://github.com/kanidm/compact-jwt"
readme = "README.md"
keywords = ["jwt", "authentication"]
categories = ["authentication", "web-programming"]
license = "MPL-2.0"
[features]
unsafe_release_without_verify = []
hsm-crypto = ["kanidm-hsm-crypto"]
msextensions = ["dep:openssl-kdf", "openssl", "kanidm-hsm-crypto/msextensions"]
default = ["openssl"]
[package.metadata.docs.rs]
all-features = true
[patch.crates-io]
# kanidm-hsm-crypto = { path = "../hsm-crypto" }
[dependencies]
serde = { version = "^1.0.136", features = ["derive"] }
serde_json = "^1.0.79"
base64 = "^0.21.5"
base64urlsafedata = "^0.5.1"
kanidm-hsm-crypto = { version = "^0.2.0", optional = true }
# kanidm-hsm-crypto = { path = "../hsm-crypto", optional = true }
openssl = { version = "^0.10.38", optional = true }
openssl-kdf = { version = "0.4.2", optional = true }
url = { version = "^2.2.2", features = ["serde"] }
uuid = { version = "^1.0.0", features = ["serde"] }
tracing = "^0.1.34"
hex = "0.4"
[dev-dependencies]
tracing-subscriber = "^0.3.11"