Cargo.toml cleanup and cargo fmt
This commit is contained in:
@@ -22,9 +22,6 @@ josekit = { version = "0.10.3" }
|
|||||||
utoipa = { version = "5.5.0", features = ["axum_extras"] }
|
utoipa = { version = "5.5.0", features = ["axum_extras"] }
|
||||||
utoipa-swagger-ui = { version = "9.0.2", features = ["axum"] }
|
utoipa-swagger-ui = { version = "9.0.2", features = ["axum"] }
|
||||||
textsender_models = { git = "ssh://git@git.kundeng.us/phoenix/textsender-models.git", tag = "v0.3.0-19-cf112a468d-111" }
|
textsender_models = { git = "ssh://git@git.kundeng.us/phoenix/textsender-models.git", tag = "v0.3.0-19-cf112a468d-111" }
|
||||||
# icarus_envy = { git = "ssh://git@git.kundeng.us/phoenix/icarus_envy.git", tag = "v0.7.0" }
|
|
||||||
# dotenvy = { version = "0.15.7" }
|
|
||||||
# const_format = { version = "0.2.36" }
|
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
http-body-util = { version = "0.1.3" }
|
http-body-util = { version = "0.1.3" }
|
||||||
|
|||||||
+8
-7
@@ -99,13 +99,14 @@ pub mod user {
|
|||||||
INSERT INTO "user" (username, password, phone, firstname, lastname, salt_id)
|
INSERT INTO "user" (username, password, phone, firstname, lastname, salt_id)
|
||||||
VALUES ($1, $2, $3, $4, $5, $6)
|
VALUES ($1, $2, $3, $4, $5, $6)
|
||||||
RETURNING id, created;
|
RETURNING id, created;
|
||||||
"#)
|
"#,
|
||||||
.bind(&user.username)
|
)
|
||||||
.bind(&user.password)
|
.bind(&user.username)
|
||||||
.bind(&user.phone_number)
|
.bind(&user.password)
|
||||||
.bind(&user.firstname)
|
.bind(&user.phone_number)
|
||||||
.bind(&user.lastname)
|
.bind(&user.firstname)
|
||||||
.bind(user.salt_id)
|
.bind(&user.lastname)
|
||||||
|
.bind(user.salt_id)
|
||||||
.fetch_one(pool)
|
.fetch_one(pool)
|
||||||
.await
|
.await
|
||||||
.map_err(|e| {
|
.map_err(|e| {
|
||||||
|
|||||||
Reference in New Issue
Block a user