-
Notifications
You must be signed in to change notification settings - Fork 35
/
Cargo.toml
41 lines (36 loc) · 1.14 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "biscuit"
version = "0.7.0"
edition = "2021"
authors = ["Yong Wen Chua <[email protected]>", "Vincent Prouillet <[email protected]>"]
license = "MIT"
readme = "README.md"
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"
repository = "https://github.com/lawliet89/biscuit"
documentation = "https://docs.rs/biscuit/"
keywords = ["jwt", "json", "jose", "jwe", "jws"]
categories = ["authentication", "web-programming"]
[badges]
travis-ci = { repository = "lawliet89/biscuit" }
[lib]
name = "biscuit"
path = "src/lib.rs"
test = true
doctest = true
doc = true
[dependencies]
chrono = { version = "0.4.20", default-features = false, features = ["clock"] }
data-encoding = "2.3.2"
once_cell = "1.16.0"
num-bigint = "0.4"
num-traits = "0.2"
ring = "~0.17.5"
serde = { version = "1.0.147", features=["derive"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
[dev-dependencies]
serde_test = "1.0"
[features]
# Treat warnings as a build error.
strict = []