Skip to content

Commit 245564e

Browse files
authored
Merge pull request #36 from nuclearcat/fix-jwt-deps
Fix dependencies on newer crate of jsonwebtoken
2 parents ead1eb9 + b60dbc6 commit 245564e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ futures-util = "0.3.31"
2020
headers = "0.4.0"
2121
hex = "0.4.3"
2222
http-body-util = "0.1.2"
23-
jsonwebtoken = "10"
23+
jsonwebtoken = { version = "10", features = ["rust_crypto"] }
2424
rand = "0.8.5"
2525
reqwest = { version = "0.12.9", features = ["blocking"] }
2626
rustls = "0.23.20"
@@ -37,6 +37,6 @@ tracing-subscriber = "0.3.19"
3737

3838
[dev-dependencies]
3939
reqwest = { version = "0.12.9", features = ["blocking", "multipart"] }
40-
jsonwebtoken = "10"
40+
jsonwebtoken = { version = "10", features = ["rust_crypto"] }
4141
tokio = { version = "1.42.0", features = ["rt", "rt-multi-thread", "macros", "time", "process"] }
4242
tempfile = "3.14.0"

0 commit comments

Comments
 (0)