forked from jedisct1/rust-jwt-simple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
52 lines (46 loc) · 1.46 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
49
50
51
52
[package]
name = "jwt-simple"
version = "0.11.6"
description = "Easy to use, secure, non opinionated JWT (JSON Web Tokens) implementation for Rust."
authors = ["Frank Denis <[email protected]>"]
edition = "2018"
license = "ISC"
repository = "https://github.com/jedisct1/rust-jwt-simple"
homepage = "https://github.com/jedisct1/rust-jwt-simple"
categories = ["wasm", "api-bindings", "web-programming", "cryptography"]
keywords = ["jwt", "jws", "authentication", "tokens", "json"]
readme = "README.md"
[dependencies]
anyhow = "1.0.71"
binstring = "0.1.1"
ciborium = { version = "0.2.1", optional = true }
coarsetime = "0.1.23"
ct-codecs = "1.1.1"
ed25519-compact = { version = "2.0.4", features = ["pem"] }
hmac-sha1-compact = "1.1.4"
hmac-sha256 = { version = "1.1.7", features = ["traits010"] }
hmac-sha512 = { version = "1.1.5", features = ["traits010", "sha384"] }
k256 = { version = "0.13.1", features = ["ecdsa", "std", "pkcs8", "pem"] }
p256 = { version = "0.13.2", features = ["ecdsa", "std", "pkcs8", "pem"] }
p384 = { version = "0.13.0", features = ["ecdsa", "std", "pkcs8", "pem"] }
rand = "0.8.5"
rsa = "0.7.2"
serde = { version = "1.0.171", features = ["derive"] }
serde_json = "1.0.102"
spki = "0.6.0"
thiserror = "1.0.43"
zeroize = "1.6.0"
[dev-dependencies]
benchmark-simple = "0.1.8"
[features]
cwt = ["ciborium"]
[[bench]]
name = "benchmark"
harness = false
[profile.release]
codegen-units = 1
incremental = false
panic = "abort"
lto = "fat"
[profile.bench]
codegen-units = 1