mirror of
https://github.com/Blah-IM/blahrs.git
synced 2025-09-13 05:55:22 +00:00
feat(webapi): impl user registration and identity description format
This commit is contained in:
parent
7f74d73c8c
commit
fb76756482
11 changed files with 972 additions and 20 deletions
|
@ -11,15 +11,20 @@ clap = { version = "4", features = ["derive"] }
|
|||
ed25519-dalek = "2"
|
||||
futures-util = "0.3"
|
||||
hex = { version = "0.4", features = ["serde"] }
|
||||
http-body-util = "0.1"
|
||||
humantime = "2"
|
||||
parking_lot = "0.12" # Maybe no better performance, just that we hate poisoning. ¯\_(ツ)_/¯
|
||||
rand = "0.8"
|
||||
reqwest = "0.12"
|
||||
rusqlite = "0.32"
|
||||
sd-notify = "0.4"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde-constant = "0.1"
|
||||
serde-inline-default = "0.2.0"
|
||||
serde_jcs = "0.1"
|
||||
serde_json = "1"
|
||||
serde_urlencoded = "0.7.1"
|
||||
sha2 = "0.10"
|
||||
tokio = { version = "1", features = ["macros", "rt-multi-thread", "sync", "time"] }
|
||||
tokio-stream = { version = "0.1", features = ["sync"] }
|
||||
toml = "0.8"
|
||||
|
@ -32,7 +37,6 @@ blah-types = { path = "../blah-types", features = ["rusqlite"] }
|
|||
|
||||
[dev-dependencies]
|
||||
nix = { version = "0.29.0", features = ["fs", "process", "signal"] }
|
||||
rand = "0.8.5"
|
||||
reqwest = { version = "0.12.7", features = ["json"] }
|
||||
rstest = { version = "0.22.0", default-features = false }
|
||||
scopeguard = "1.2.0"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue