14 lines
358 B
TOML
14 lines
358 B
TOML
[package]
|
|
name = "baseauth"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
tokio = { version = "1.29", features = ["macros", "rt-multi-thread", "sync"] }
|
|
anyhow = "1.0"
|
|
actix-web = "4"
|
|
serde = { version = "1.0.183", features = ["derive"] }
|