medallion/Cargo.toml

25 lines
742 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"
2021-12-03 19:09:49 +00:00
homepage = "https://gitea.cmdln.net/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"
2021-12-03 19:09:49 +00:00
repository = "https://gitea.cmdln.net/cmdln/medallion"
2022-02-19 13:32:44 +00:00
version = "2.5.0"
edition = "2018"
[badges]
[badges.travis-ci]
branch = "master"
repository = "https://travis-ci.org/cmdln/medallion"
2017-02-13 23:40:07 +00:00
[dependencies]
2021-04-20 13:25:42 +00:00
base64 = "~0.13.0"
openssl = "~0.10.15"
serde = { version = "^1.0.114", features = [ "derive" ] }
serde_json = "^1.0.55"
anyhow = "^1.0.31"
time = "~0.3"