jsonwebtoken/Cargo.toml

20 lines
491 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-02-04 12:39:46 -05:00
version = "6.0.0"
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-01-31 23:12:29 -05:00
ring = "0.14.4"
2018-03-19 07:30:37 -04:00
base64 = "0.9"
2018-07-13 18:50:34 -04:00
untrusted = "0.6"
chrono = "0.4"