-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (26 loc) · 780 Bytes
/
Copy pathCargo.toml
File metadata and controls
28 lines (26 loc) · 780 Bytes
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
[package]
name = "torii-axum"
version = "0.5.2"
description = "Ready-to-use Axum routes and middleware for the Torii authentication framework"
edition.workspace = true
repository.workspace = true
license.workspace = true
[dependencies]
torii = { path = "../torii", version = "0.5.3", default-features = false }
torii-core = { path = "../torii-core", version = "0.5.2" }
axum = "0.8"
axum-extra = { version = "0.12.3", features = ["cookie", "typed-header"] }
cookie = "0.18"
tokio.workspace = true
serde.workspace = true
serde_json.workspace = true
tower = "0.5"
thiserror.workspace = true
tracing.workspace = true
chrono.workspace = true
[features]
default = []
password = ["torii/password"]
magic-link = ["torii/magic-link"]
oauth = ["torii/oauth"]
passkey = ["torii/passkey"]