[package]
edition = "2021"
rust-version = "1.66"
name = "biscuit"
version = "0.8.0"
authors = [
"Yong Wen Chua <me@yongwen.xyz>",
"Vincent Prouillet <vincent@wearewizards.io>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
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)."""
homepage = "https://github.com/lawliet89/biscuit"
documentation = "https://docs.rs/biscuit/"
readme = "README.md"
keywords = [
"jwt",
"json",
"jose",
"jwe",
"jws",
]
categories = [
"authentication",
"web-programming",
]
license = "MIT"
repository = "https://github.com/lawliet89/biscuit"
[badges.travis-ci]
repository = "lawliet89/biscuit"
[features]
strict = []
[lib]
name = "biscuit"
path = "src/lib.rs"
test = true
doctest = true
doc = true
[dependencies.chrono]
version = "0.4.20"
features = ["clock"]
default-features = false
[dependencies.data-encoding]
version = "2.3.2"
[dependencies.num-bigint]
version = "0.4"
[dependencies.num-traits]
version = "0.2"
[dependencies.once_cell]
version = "1.16.0"
[dependencies.ring]
version = "~0.17.13"
[dependencies.serde]
version = "1.0.147"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
features = ["preserve_order"]
[dev-dependencies.serde_test]
version = "1.0"