tvl-depot/Cargo.toml
Vincent Ambo dd527ecdf1 feat: Implement claim validation
Implements initial validations of token claims. The included
validations are:

* validation of token issuer
* validation of token audience
* validation that a subject is set
* validation that a token is not expired
2018-09-04 12:45:27 +02:00

11 lines
200 B
TOML

[package]
name = "alcoholic_jwt"
version = "0.1.0"
authors = ["Vincent Ambo <vincent@aprila.no>"]
[dependencies]
base64 = "0.9"
openssl = "0.10"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"