WIP implement core account creation logic

This commit is contained in:
Julia Lange 2025-08-29 13:15:35 -07:00
parent b522c062c0
commit 55b583b6e6
Signed by: Julia
SSH key fingerprint: SHA256:5DJcfxa5/fKCYn57dcabJa2vN2e6eT0pBerYi5SUbto
7 changed files with 259 additions and 95 deletions

View file

@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2024"
[dependencies]
atproto.workspace = true
atproto = { workspace = true, features = ["sqlx-support"] }
router.workspace = true
http = "1.3.1"
serde.workspace = true
@ -12,3 +12,8 @@ serde_json.workspace = true
tokio.workspace = true
tracing-subscriber.workspace = true
tracing.workspace = true
async-trait.workspace = true
sqlx.workspace = true
thiserror.workspace = true
argon2 = "0.5"
time = { version = "0.3", features = ["formatting", "macros"] }