-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathCargo.toml
51 lines (45 loc) · 1.14 KB
/
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
49
50
51
[package]
name = "openid"
version = "0.16.1"
authors = ["Alexander Korolev <[email protected]>"]
edition = "2021"
categories = ["authentication"]
description = """
OpenID Connect & Discovery client library using async / await.
"""
homepage = "https://github.com/kilork/openid"
keywords = ["authentication", "authorization", "oauth", "openid", "uma2"]
license = "Unlicense OR MIT"
readme = "README.md"
repository = "https://github.com/kilork/openid"
rust-version = "1.71.1"
[features]
default = ["native-tls"]
microsoft = []
uma2 = []
native-tls = ["reqwest/native-tls"]
rustls = ["reqwest/rustls-tls"]
[dependencies]
lazy_static = "1.4"
serde_json = { version = "1", default-features = false }
base64 = "0.22"
biscuit = "0.7"
thiserror = "1"
validator = { version = "0.19", features = ["derive"] }
mime = "0.3"
[dependencies.url]
version = "2"
default-features = false
features = ["serde"]
[dependencies.chrono]
version = "0.4"
default-features = false
features = ["serde"]
[dependencies.serde]
version = "1"
default-features = false
features = ["derive"]
[dependencies.reqwest]
version = "0.12"
default-features = false
features = ["json"]