medallion/Cargo.toml

26 lines
754 B
TOML
Raw Normal View History

2017-02-13 23:40:07 +00:00
[package]
authors = ["Thomas Gideon <cmdln@thecommandline.net>"]
categories = ["cryptography", "authentication", "web-programming", "data-structures"]
2017-02-13 23:40:07 +00:00
description = "JWT library for rust using serde, serde_json and openssl"
documentation = "https://cmdln.github.io/medallion/"
homepage = "http://github.com/cmdln/medallion"
2017-03-14 18:24:56 +00:00
keywords = ["JWT", "token", "web", "JSON", "RSA"]
2017-02-13 23:40:07 +00:00
license = "MIT"
name = "medallion"
readme = "README.md"
2018-11-18 15:45:07 +00:00
repository = "http://github.com/cmdln/medallion"
2018-11-18 15:49:52 +00:00
version = "2.3.1"
[badges]
[badges.travis-ci]
branch = "master"
repository = "https://travis-ci.org/cmdln/medallion"
2017-02-13 23:40:07 +00:00
[dependencies]
base64 = "~0.10.0"
failure = "~0.1.3"
openssl = "~0.10.15"
serde = "^1.0.80"
serde_derive = "^1.0.80"
serde_json = "^1.0.33"
time = "~0.1.40"