diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5d0529a..a361b32 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,14 +23,14 @@ jobs: steps: - name: ✅ Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: ⚙️ Rust uses: actions-rs/toolchain@v1 with: toolchain: stable override: true - name: ⚡ Cache - uses: actions/cache@v2.1.4 + uses: actions/cache@v4 with: path: | ~/.cargo/bin/ diff --git a/Cargo.toml b/Cargo.toml index 28629ce..e51e8d8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,11 +5,11 @@ license = "MIT OR Apache-2.0" name = "sentry-rust-minidump" readme = "README.md" repository = "https://github.com/timfish/sentry-rust-minidump" -version = "0.10.0" +version = "0.11.0" [dependencies] minidumper-child = "0.2" -sentry = "0.36" +sentry = "0.37" thiserror = "2" serde = { version = "1", features = ["derive"], optional = true } serde_json = { version = "1", optional = true } @@ -17,7 +17,7 @@ serde_json = { version = "1", optional = true } [dev-dependencies] actix-rt = "2.7" sadness-generator = "0.6" -sentry-test-server = {git = "https://github.com/timfish/sentry-test-server.git", rev = "105dc5c"} +sentry-test-server = {git = "https://github.com/timfish/sentry-test-server.git", rev = "46f1caf"} [features] -ipc = [ "dep:serde", "dep:serde_json"] \ No newline at end of file +ipc = ["dep:serde", "dep:serde_json"] \ No newline at end of file diff --git a/README.md b/README.md index c810e6a..cf0fed5 100644 --- a/README.md +++ b/README.md @@ -18,8 +18,8 @@ application code. ```toml [dependencies] -sentry = "0.36" -sentry-rust-minidump = "0.9" +sentry = "0.37" +sentry-rust-minidump = "0.11" ``` ```rust