forked from mikkyang/rust-jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 669 Bytes
/
Cargo.toml
File metadata and controls
31 lines (27 loc) · 669 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
28
29
30
31
[package]
name = "jwt"
version = "0.15.0"
authors = ["Michael Yang <mikkyangg@gmail.com>"]
description = "JSON Web Token library"
documentation = "https://docs.rs/jwt"
homepage = "http://github.com/mikkyang/rust-jwt"
repository = "http://github.com/mikkyang/rust-jwt"
readme = "README.md"
keywords = ["JWT", "token", "web"]
license = "MIT"
edition = "2018"
[package.metadata.docs.rs]
features = ["openssl"]
[dependencies]
base64 = "0.13"
crypto-mac = "0.11"
digest = "0.9"
hmac = "0.11"
sha2 = "0.9"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
[dependencies.openssl]
version = "0.10"
optional = true
[dev-dependencies]
doc-comment = "0.3"