Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lawliet89/biscuit
JOSE (JSON Web Token) Library for Rust
https://github.com/lawliet89/biscuit
hacktoberfest jose json json-web-token jwa jwe jwk jws jwt rust
Last synced: 2 days ago
JSON representation
JOSE (JSON Web Token) Library for Rust
- Host: GitHub
- URL: https://github.com/lawliet89/biscuit
- Owner: lawliet89
- License: other
- Created: 2017-03-01T01:37:32.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-11-10T02:04:25.000Z (about 1 year ago)
- Last Synced: 2025-01-12T21:02:46.347Z (9 days ago)
- Topics: hacktoberfest, jose, json, json-web-token, jwa, jwe, jwk, jws, jwt, rust
- Language: Rust
- Homepage: https://lawliet89.github.io/biscuit
- Size: 1.64 MB
- Stars: 182
- Watchers: 4
- Forks: 35
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# biscuit
[![Build Status](https://travis-ci.org/lawliet89/biscuit.svg)](https://travis-ci.org/lawliet89/biscuit)
[![Crates.io](https://img.shields.io/crates/v/biscuit.svg)](https://crates.io/crates/biscuit)
[![Repository](https://img.shields.io/github/tag/lawliet89/biscuit.svg)](https://github.com/lawliet89/biscuit)
[![Documentation](https://docs.rs/biscuit/badge.svg)](https://docs.rs/biscuit)
[![dependency status](https://deps.rs/repo/github/lawliet89/biscuit/status.svg)](https://deps.rs/repo/github/lawliet89/biscuit)- Documentation: [stable](https://docs.rs/biscuit/)
- Changelog: [Link](https://github.com/lawliet89/biscuit/blob/master/CHANGELOG.md)A library to work with Javascript Object Signing and Encryption(JOSE),
including JSON Web Tokens (JWT), JSON Web Signature (JWS) and JSON Web Encryption (JWE)This was based off [`Keats/rust-jwt`](https://github.com/Keats/rust-jwt).
## Installation
Add the following to Cargo.toml:
```toml
biscuit = "0.7.0"
```To use the latest `master` branch, for example:
```toml
biscuit = { git = "https://github.com/lawliet89/biscuit", branch = "master" }
```## Supported Features
The crate, does not support all, and probably will never support all of
the features described in the various RFCs, including some algorithms and verification.See the [documentation](https://github.com/lawliet89/biscuit/blob/master/doc/supported.md) for more information.