-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
27 lines (26 loc) · 918 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 = "leptos-keycloak-auth"
version = "0.2.0"
edition = "2021"
rust-version = "1.70.0"
authors = ["Lukas Potthast <[email protected]>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/lpotthast/leptos-keycloak-auth"
description = "Secure Leptos applications using Keycloak."
categories = ["web-programming", "api-bindings", "network-programming"]
keywords = ["leptos", "keyclaok", "auth", "oidc", "oauth"]
include = ["src/**/*", "LICENSE-*", "README.md"]
[dependencies]
codee = { version = "0.2.0", features = ["json_serde"] }
jsonwebtoken = "9.2.0"
leptos = "0.6.5"
leptos-use = "0.13.4"
leptos_router = "0.6.5"
reqwest = { version = "0.12.5", features = ["json"] }
serde = { version = "1.0.196", features = ["derive"] }
serde_json = "1.0.113"
snafu = "0.8.0"
time = { version = "0.3.34", features = ["wasm-bindgen", "serde"] }
tracing = "0.1.40"
url = "2.5.0"