forked from wasmCloud/wasmCloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
27 lines (25 loc) · 881 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
[package]
name = "wascap"
version = "0.12.0"
description = "Wascap - wasmCloud Capabilities. Library for extracting, embedding, and validating claims"
homepage = "https://wasmcloud.com"
documentation = "https://docs.rs/wascap"
readme = "README.md"
keywords = ["jwt", "crypto", "ed25519", "security", "webassembly"]
categories = ["cryptography", "authentication", "wasm"]
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
[dependencies]
data-encoding = { workspace = true }
humantime = { workspace = true }
log = { workspace = true }
nkeys = { workspace = true }
nuid = { workspace = true }
ring = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true, features = ["std"] }
wasm-encoder = { workspace = true }
wasm-gen = { workspace = true }
wasmparser = { workspace = true }