jsonwebtoken/Cargo.toml

21 lines
618 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"
2017-09-07 03:46:40 -04:00
version = "3.0.0"
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]
2017-09-07 03:46:40 -04:00
error-chain = { version = "0.11", default-features = false }
serde_json = "1.0"
serde_derive = "1.0"
serde = "1.0"
2017-08-30 05:09:57 -04:00
ring = { version = "0.12.0", features = ["rsa_signing", "dev_urandom_fallback"] }
2017-10-22 07:20:01 -04:00
base64 = "0.7"
2017-05-09 00:37:56 -04:00
untrusted = "0.5"
chrono = "0.4"