chore: bump sqlx to 0.7

This commit is contained in:
Aravinth Manivannan
2023-10-16 21:11:04 +05:30
parent 0d2c02348b
commit 0e75a22beb
105 changed files with 2455 additions and 1183 deletions

View File

@@ -141,7 +141,7 @@ pub mod tests {
assert_eq!(get_config_resp.status(), StatusCode::OK);
let config: PoWConfig = test::read_body_json(get_config_resp).await;
let pow = pow_sha256::ConfigBuilder::default()
let pow = mcaptcha_pow_sha256::ConfigBuilder::default()
.salt(config.salt)
.build()
.unwrap();
@@ -204,7 +204,7 @@ pub mod tests {
assert_eq!(get_config_resp.status(), StatusCode::OK);
let config: PoWConfig = test::read_body_json(get_config_resp).await;
let pow = pow_sha256::ConfigBuilder::default()
let pow = mcaptcha_pow_sha256::ConfigBuilder::default()
.salt(config.salt)
.build()
.unwrap();

View File

@@ -123,7 +123,7 @@ pub mod tests {
assert_eq!(get_config_resp.status(), StatusCode::OK);
let config: PoWConfig = test::read_body_json(get_config_resp).await;
let pow = pow_sha256::ConfigBuilder::default()
let pow = mcaptcha_pow_sha256::ConfigBuilder::default()
.salt(config.salt)
.build()
.unwrap();