diff --git a/Cargo.lock b/Cargo.lock index c5ea341..bc5e205 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2753,18 +2753,18 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.64" +version = "1.0.65" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d50af8abc119fb8bb6dbabcfa89656f46f84aa0ac7688088608076ad2b459a84" +checksum = "5d11abd9594d9b38965ef50805c5e469ca9cc6f197f883f717e0269a3057b3d5" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.64" +version = "1.0.65" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08904e7672f5eb876eaaf87e0ce17857500934f4981c4a0ab2b4aa98baac7fc3" +checksum = "ae71770322cbd277e69d762a16c444af02aa0575ac0d174f0b9562d3b37f8602" dependencies = [ "proc-macro2", "quote", diff --git a/api/Cargo.toml b/api/Cargo.toml index 5344fc2..4d0cb39 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -7,13 +7,18 @@ authors = ["Lennox Schneider "] [dependencies] rocket = { version = "0.5.1", features = ["json"] } aws-sdk-s3 = "1.57.0" -aws-credential-types = { version = "1.2.1", features = ["hardcoded-credentials"] } +aws-credential-types = { version = "1.2.1", features = [ + "hardcoded-credentials", +] } aws-config = "1.5.8" async-trait = "0.1.83" serde = "1.0.213" -thiserror = "1.0.64" +thiserror = "1.0.65" rand = "0.8.5" macros = { path = "../macros" } -sqlx = { version = "0.8.2", features = ["postgres", "runtime-tokio-native-tls"] } +sqlx = { version = "0.8.2", features = [ + "postgres", + "runtime-tokio-native-tls", +] } uuid = { version = "1.11.0", features = ["v4"] } log = "0.4.22"