jsonwebtoken/Cargo.toml

20 lines
497 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-04-02 02:31:22 -04:00
version = "1.1.7"
2015-10-31 11:37:15 -04:00
authors = ["Vincent Prouillet <vincent@wearewizards.io>"]
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-04-01 15:02:08 -04:00
rustc-serialize = "^0.3"
ring = "^0.7"
error-chain = "0.9"
serde_json = "0.9"
serde_derive = "0.9"
serde = "0.9"
base64 = "0.4"