40 lines
1.2 KiB
TOML
40 lines
1.2 KiB
TOML
[package]
|
|
name = "siwe-oidc"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Spruce Systems, Inc."]
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/spruceid/siwe-oidc/"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.51"
|
|
axum = { version = "0.3.4", features = ["headers"] }
|
|
chrono = "0.4.19"
|
|
headers = "0.3.5"
|
|
hex = "0.4.3"
|
|
iri-string = { version = "0.4", features = ["serde-std"] }
|
|
openidconnect = "2.1.2"
|
|
rand = "0.8.4"
|
|
rsa = { version = "0.5.0", features = ["alloc"] }
|
|
rust-argon2 = "0.8"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0.72"
|
|
siwe = "0.1"
|
|
async-session = "3.0.0"
|
|
thiserror = "1.0.30"
|
|
tokio = { version = "1.14.0", features = ["full"] }
|
|
tower-http = { version = "0.2.0", features = ["fs", "trace", "cors"] }
|
|
tracing = "0.1.29"
|
|
tracing-subscriber = { version = "0.3.2", features = ["env-filter"] }
|
|
url = { version = "2.2", features = ["serde"] }
|
|
urlencoding = "2.1.0"
|
|
uuid = { version = "0.8", features = ["serde", "v4"] }
|
|
figment = { version = "0.10.6", features = ["toml", "env"] }
|
|
sha2 = "0.9.0"
|
|
cookie = "0.15.1"
|
|
bincode = "1.3.3"
|
|
bb8-redis = "0.10.1"
|
|
async-redis-session = "0.2.2"
|