More info/config for Travis
This commit is contained in:
parent
6f7daf9a87
commit
e24df1568d
3 changed files with 8 additions and 0 deletions
|
@ -5,6 +5,7 @@ authors = ["Thomas Gideon <cmdln@thecommandline.net>"]
|
|||
description = "JWT library for rust using serde, serde_json and openssl"
|
||||
homepage = "http://github.com/commandline/meiallion"
|
||||
repository = "http://github.com/commandline/medallion"
|
||||
documentation = "https://commandline.github.io/medallion/"
|
||||
readme = "README.md"
|
||||
keywords = ["JWT", "token", "web"]
|
||||
license = "MIT"
|
||||
|
|
|
@ -2,6 +2,10 @@
|
|||
|
||||
A JWT library for rust using serde, serde_json and openssl.
|
||||
|
||||
## Documentation
|
||||
|
||||
* https://commandline.github.io/medallion/
|
||||
|
||||
## Usage
|
||||
|
||||
The library provides a `Token` type that wraps a header and claims. The claims can be any type that implements the `Component` trait, which is automatically implemented for types that implement the `Sized`, `Encodable`,
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
#![crate_name = "medallion"]
|
||||
#![crate_type = "lib"]
|
||||
#![doc(html_root_url = "https://commandline.github.io/medallion/")]
|
||||
extern crate base64;
|
||||
extern crate openssl;
|
||||
extern crate serde;
|
||||
|
|
Loading…
Reference in a new issue