diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e375a0ec..37530414 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -2,8 +2,6 @@ name: CI on: pull_request: push: - branches: - - main paths-ignore: - '**/.md' workflow_dispatch: diff --git a/Cargo.lock b/Cargo.lock index cd4e029f..f7f0ebe0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1263,6 +1263,15 @@ dependencies = [ "unicode-segmentation", ] +[[package]] +name = "convert_case" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb402b8d4c85569410425650ce3eddc7d698ed96d39a73f941b08fb63082f1e7" +dependencies = [ + "unicode-segmentation", +] + [[package]] name = "cookie" version = "0.16.2" @@ -3272,7 +3281,7 @@ dependencies = [ "serde", "serde_json", "specta 2.0.0-rc.12", - "thiserror 1.0.69", + "thiserror 2.0.11", "tokio", ] @@ -5442,7 +5451,7 @@ dependencies = [ name = "prisma-client-rust-generator-macros" version = "0.6.8" dependencies = [ - "convert_case 0.6.0", + "convert_case 0.7.1", "prisma-client-rust-generator-shared", "proc-macro2", "quote", @@ -5453,7 +5462,7 @@ dependencies = [ name = "prisma-client-rust-generator-shared" version = "0.1.0" dependencies = [ - "convert_case 0.6.0", + "convert_case 0.7.1", "prisma-client-rust-sdk", "proc-macro2", "quote", @@ -7599,7 +7608,7 @@ dependencies = [ "sha2 0.10.8", "syn 2.0.87", "tauri-utils", - "thiserror 2.0.2", + "thiserror 2.0.11", "time", "url", "uuid", @@ -7634,7 +7643,7 @@ dependencies = [ "serde", "serde_json", "tauri-utils", - "thiserror 2.0.2", + "thiserror 2.0.11", "url", "windows 0.58.0", ] @@ -7722,7 +7731,7 @@ dependencies = [ "serde_json", "serde_with 3.11.0", "swift-rs", - "thiserror 2.0.2", + "thiserror 2.0.11", "toml 0.8.2", "url", "urlpattern 0.3.0", @@ -7790,11 +7799,11 @@ dependencies = [ [[package]] name = "thiserror" -version = "2.0.2" +version = "2.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "037e29b009aa709f293b974da5cd33b15783c049e07f8435778ce8c4871525d8" +checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc" dependencies = [ - "thiserror-impl 2.0.2", + "thiserror-impl 2.0.11", ] [[package]] @@ -7810,9 +7819,9 @@ dependencies = [ [[package]] name = "thiserror-impl" -version = "2.0.2" +version = "2.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea4778c7e8ff768bdb32a58a2349903859fe719a320300d7d4ce8636f19a1e69" +checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index 64d59015..0ca08c54 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,7 +26,7 @@ user-facing-errors = { git = "https://github.com/Brendonovich/prisma-engines", b serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -convert_case = "0.6.0" +convert_case = "0.7.1" tauri-specta = { version = "2.0.0-rc.9" } diff --git a/integration-tests/Cargo.toml b/integration-tests/Cargo.toml index 51ca47cf..4aef58df 100644 --- a/integration-tests/Cargo.toml +++ b/integration-tests/Cargo.toml @@ -23,6 +23,6 @@ prisma-client-rust = { workspace = true, features = [ "mocking", ] } async-trait = "0.1.60" -thiserror = "1.0.37" +thiserror = "2.0.11" specta = { workspace = true, features = ["typescript"] } serde_json = { version = "1" }