Start Auth Library

Auth will talk to pocketbase
This commit is contained in:
2024-06-29 21:45:05 -04:00
Unverified
parent 818bec067f
commit 58b38f3d2d
7 changed files with 91 additions and 2 deletions

14
auth/Cargo.toml Normal file
View File

@@ -0,0 +1,14 @@
[package]
name = "realm_auth"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0"
futures = "0.3"
tarpc = { version = "0.34.0", features = ["full"] }
tokio = { version = "1.0", features = ["macros", "net", "rt-multi-thread"] }
tracing = "0.1.40"
serde = { version = "1.0.203", features = ["derive"] }
chrono = { version = "0.4.24", features = ["serde"] }
dotenvy = "0.15"