forked from jedisct1/rust-jwt-simple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (34 loc) · 1.09 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
[package]
name = "jwt-simple"
version = "0.10.0"
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"
coarsetime = "0.1"
ct-codecs = "1"
ed25519-compact = "0.1"
hmac-sha256 = { version = "0.1", features = ["traits"] }
hmac-sha512 = { version = "0.1", features = ["traits", "sha384"] }
k256 = { version = "0.8.0", features = ["ecdsa", "std", "pkcs8", "pem"] }
p256 = { version = "0.8.0", features = ["ecdsa", "std", "pkcs8", "pem"] }
rand = "0.8"
rsa = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
zeroize = "1.3"
[profile.release]
codegen-units = 1
incremental = false
panic = "abort"
lto = "fat"
[profile.bench]
codegen-units = 1