jwt 0.5.0

JSON Web Token library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# JWT

[![crates.io](http://meritbadge.herokuapp.com/jwt)](https://crates.io/crates/jwt)

A JSON Web Token library.

[Documentation](http://mikkyang.github.io/rust-jwt/doc/jwt/index.html)

## Usage

The library provides a `Token` type that wraps a header and claims. The header
and claims can be any types that implement the `Component` trait, which is
automatically implemented for types that implement the `Sized`, `Encodable`,
and `Decodable` traits. See the examples.