-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
48 lines (37 loc) · 1.15 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
[package]
name = "webcipher"
version = "1.0.3"
authors = [
"Raunak Bhagat <[email protected]>"
]
edition = "2021"
license = "MIT"
description = "JWT encryption/decryption algorithms + a JWK Store implementation (for caching and authentication/authorization optimizations)."
repository = "https://github.com/wavy-app/webcipher"
keywords = ["jwt", "jwks"]
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# jwt decryption / verification
jsonwebtoken = "8.1.0"
# serialization / deserialization
serde = { version = "1.0.111", features = ["derive"] }
serde_json = "1.0.79"
# network request operations
hyper = { version = "0.14", features = ["full"] }
hyper-tls = "0.5.0"
# http utilities
http = "0.2.7"
http-serde = "1.1.0"
# async runtime
tokio = { version = "1.18.0", features = ["full"] }
# partial derivations
derivative = "2.2.0"
# universally unique identifiers
uuid = { version = "1.1.1", features = ["v4", "serde"] }
# time utilities + primitives
chrono = "0.4.19"
# (fast) random number generator
fastrand = "1.7.0"
# std::fmt::Display derive macros
derive_more = "0.99.17"