ASAP for Rust

crates.io dependency status build status

Documentation.

This is a rust library for generating and validating ASAP tokens. It provides options for doing so that are compliant with the ASAP specification.

Why should you use this library?

Basically, yes. Yes, you should use this library if you want ASAP and use Rust.

Usage

Installation

To install, add the following lines to your Cargo.toml:

```toml asap = ""

These crates are required for defining your own Claims struct which needs

to be serialised into the token (and deserialised out of it).

serde_derive = "1" serde = "1" ```

Documentation

And see the documentation and API which should be straightforward enough for anything you'd need.

Development/Testing

Currently, running the tests has some limitations:

To run the tests, perform the following:

```bash

Runs a simple keyserver.

cargo run -p keyserver

In a different shell, run the tests with the following command:

./support/test.sh ```

References

License

MIT