-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
43 lines (38 loc) · 1.23 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
[package]
name = "propelauth"
version = "0.19.0"
authors = ["[email protected]"]
description = "A Rust crate for managing authentication and authorization with support for multi-tenant / B2B products, powered by PropelAuth"
keywords = ["authentication", "auth", "authorization", "b2b", "tenant"]
categories = ["authentication"]
homepage = "https://www.propelauth.com"
license = "MIT"
edition = "2018"
[dependencies]
actix-web = { version = "4", optional = true }
axum_06 = { package = "axum", version = "^0.6", optional = true }
axum_07 = { package = "axum", version = "^0.7", optional = true }
chrono = "0.4.23"
jsonwebtoken = "8.1.1"
serde = "^1.0"
serde_derive = "^1.0"
serde_json = "^1.0"
thiserror = "^1.0"
tower = { version = "^0.4", optional = true }
url = "^2.2"
uuid = { version = "^1.0", features = ["serde"] }
hex = "0.4.3"
[dependencies.reqwest]
version = "^0.12"
default-features = false
[dev-dependencies]
openssl = "0.10.43"
[features]
default = ["reqwest/default", "__reqwest"]
rustls = ["__reqwest", "reqwest/rustls-tls", "reqwest/http2", "reqwest/charset"]
axum06 = ["dep:axum_06", "dep:tower"]
axum07 = ["dep:axum_07", "dep:tower"]
actix4 = ["dep:actix-web"]
__reqwest = ["reqwest/json", "reqwest/multipart"]
[lib]
doctest = false