-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (31 loc) · 981 Bytes
/
Cargo.toml
File metadata and controls
40 lines (31 loc) · 981 Bytes
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
[package]
name = "protobuf-web-token"
version = "0.7.0"
edition = "2021"
license = " BSD-3-Clause"
description = "Create, verify and decode protobuf web tokens"
homepage = "https://github.com/andreasewering/protobuf-web-tokens"
documentation = "https://github.com/andreasewering/protobuf-web-tokens"
repository = "https://github.com/andreasewering/protobuf-web-tokens"
readme = "README.md"
keywords = ["protobuf", "web", "token"]
categories = ["authentication", "encoding"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
[dependencies]
prost = "0.14.1"
ed25519-dalek = { version = "2.2.0", features = ["pem"] }
base64 = "0.22"
prost-types = "0.14.1"
[build-dependencies]
prost-build = "0.14.1"
[dev-dependencies]
criterion = { version = "0.7", features = ["html_reports"] }
josekit = "0.10.3"
serde = "1.0.228"
serde_json = "1.0.145"
rand = "0.9.2"
rand_distr = "0.5.1"
[[bench]]
name = "pwt_vs_jwt"
harness = false