14 lines
357 B
TOML
14 lines
357 B
TOML
[package]
|
|
name = "tauth-example-backend"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
axum = "0.8"
|
|
dotenvy = "0.15"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tauth-sdk = { path = "../.." }
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread", "fs"] }
|
|
tower-http = { version = "0.6", features = ["cors"] }
|
|
url = "2"
|