medallion/Cargo.toml

25 lines
735 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"
2017-02-15 20:42:06 +00:00
documentation = "https://commandline.github.io/medallion/"
homepage = "http://github.com/commandline/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"
repository = "http://github.com/commandline/medallion"
version = "2.2.3"
[badges]
[badges.travis-ci]
branch = "master"
repository = "https://travis-ci.org/commandline/medallion"
2017-02-13 23:40:07 +00:00
[dependencies]
2018-03-12 13:38:01 +00:00
base64 = "0.9"
openssl = "0.10"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
time = "0.1"