-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (26 loc) · 857 Bytes
/
Cargo.toml
File metadata and controls
27 lines (26 loc) · 857 Bytes
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
[package]
name = "ecdsa-jwt"
version = "0.1.3"
edition = "2021"
description = "ECDSA challenge-based authentication with JWT session management"
authors = ["Usher Labs <labs@usher.so>"]
readme = "README.md"
keywords = ["ecdsa", "jwt", "authentication", "crypto", "challenge"]
categories = ["cryptography", "authentication"]
license = "MIT"
repository = "https://github.com/usherlabs/ecdsa-jwt"
homepage = "https://github.com/usherlabs/ecdsa-jwt"
[dependencies]
base64 = "0.22"
hex = "0.4"
jsonwebtoken = "9.3"
chrono = { version = "0.4", features = ["serde"] }
k256 = { version = "0.13", features = ["pem"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
uuid = { version = "1.10", features = ["v4", "serde"] }
secrecy = { version = "0.8", features = ["serde"] }
rand = "0.8"
sha2 = "0.10"
libsecp256k1 = "0.7"
easy-hasher = "2.2.1"