forked from lawliet89/biscuit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
38 lines (34 loc) · 1.04 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
[package]
name = "biscuit"
version = "0.0.8"
authors = ["Yong Wen Chua <me@yongwen.xyz>", "Vincent Prouillet <vincent@wearewizards.io>"]
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 = "0.4.2"
data-encoding = "2.1.1"
lazy_static = "1.0.0"
num = "0.1.37"
ring = { version = "0.13.0-alpha4", features = ["rsa_signing"] }
serde = "1.0"
serde_derive = "1.0"
serde_json = { version = "1.0", features = ["preserve_order"] }
untrusted = "0.6.1"
url = "^1.0"
[dev-dependencies]
serde_test = "1.0"