-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (27 loc) · 1020 Bytes
/
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
[package]
name = "json-proof-token"
version = "0.3.5"
edition = "2021"
authors = ["LINKS Foundation"]
repository = "https://github.com/Cybersecurity-LINKS/json-proof-token"
description = """A library implementation based on the new JOSE Working Group draft specifications:
JSON Web Proof (JWP), JSON Proof Token (JPT) and JSON Proof Algorithm (JPA)."""
keywords = [ "jose", "jwp", "jpt", "jwk", "zero-knowledge" ]
categories = [ "cryptography", "authentication" ]
license = "Apache-2.0"
rust-version = "1.65"
[dependencies]
serde = { version = "1.0.25", default_feature = false, features = ["derive", "serde_derive"] }
serde_json = {version = "1.0.59", features = ["preserve_order"]}
data-encoding = "2.4.0"
indexmap = {version = "2.0.2", features = ["serde"]}
thiserror = "1.0.57"
zkryptium = {version = "0.2.1", default-features = false, features = ["bbsplus"]}
cargo-license = "0.5.1"
json-unflattening = "0.1.2"
[lib]
name = "jsonprooftoken"
path = "src/lib.rs"
[[example]]
name = "jpt"
path = "examples/jpt.rs"