forked from antonengelhardt/wasm-oidc-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
48 lines (38 loc) · 901 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
publish = false
name = "wasm-oidc-plugin"
version = "0.0.1"
authors = ["WWU Cloud Developer <[email protected]>, Anton Engelhardt <[email protected]>"]
description = "WASM OIDC Envoy Plugin"
license = "Apache-2.0"
edition = "2018"
[lib]
crate-type = ["cdylib"]
[dependencies]
# logging
log = "0.4.17"
# proxy-wasm
proxy-wasm = "0.2.1"
# json, yaml & url parsing
url = "2.3.0"
serde = { version = "1.0.160", features = ["derive"] }
serde_yaml = "0.9"
serde_json = "1.0.96"
serde_urlencoded = "0.7.1"
# base64
base64 = "0.21.0"
# regex
regex = "1.4.3"
serde_regex = "1.1.0"
# jsonwebtoken
jwt-simple = {git = "https://zivgitlab.uni-muenster.de/m_wiga01/rust-jwt-simple/", rev = "b92ac707dab1f65fae00569a468793d5eb6dab22"}
# pkce
pkce = "0.2.0"
# aes256
aes-gcm = "0.10.2"
[profile.release]
lto = true
opt-level = 3
codegen-units = 1
panic = "abort"
strip = "debuginfo"