jsonwebtoken/Cargo.toml

20 lines
492 B
TOML
Raw Normal View History

2015-10-31 11:37:15 -04:00
[package]
2015-11-02 18:27:28 -05:00
name = "jsonwebtoken"
2019-05-10 19:49:31 -04:00
version = "6.0.1"
2017-09-07 03:46:40 -04:00
authors = ["Vincent Prouillet <prouillet.vincent@gmail.com>"]
2015-10-31 11:37:15 -04:00
license = "MIT"
readme = "README.md"
2016-01-07 09:01:07 -05:00
description = "Create and parse JWT in a strongly typed way."
2015-11-02 18:27:28 -05:00
homepage = "https://github.com/Keats/rust-jwt"
repository = "https://github.com/Keats/rust-jwt"
keywords = ["jwt", "web", "api", "token", "json"]
2015-10-31 11:37:15 -04:00
[dependencies]
serde_json = "1.0"
serde_derive = "1.0"
serde = "1.0"
2019-05-15 10:16:49 -04:00
ring = "0.14.6"
2019-03-22 04:40:08 -04:00
base64 = "0.10"
2018-07-13 18:50:34 -04:00
untrusted = "0.6"
chrono = "0.4"