Skip to content

Commit 0eb56a0

Browse files
authored
feat: Update Sentry to v0.35 (#14)
1 parent 7e65b2f commit 0eb56a0

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@ license = "MIT OR Apache-2.0"
55
name = "sentry-rust-minidump"
66
readme = "README.md"
77
repository = "https://github.com/timfish/sentry-rust-minidump"
8-
version = "0.8.0"
8+
version = "0.9.0"
99

1010
[dependencies]
1111
minidumper-child = "0.2"
12-
sentry = "0.34"
13-
thiserror = "1"
12+
sentry = "0.35"
13+
thiserror = "2"
1414
serde = { version = "1", features = ["derive"], optional = true }
1515
serde_json = { version = "1", optional = true }
1616

1717
[dev-dependencies]
1818
actix-rt = "2.7"
19-
sadness-generator = "0.5"
20-
sentry-test-server = {git = "https://github.com/timfish/sentry-test-server.git", rev = "3845172"}
19+
sadness-generator = "0.6"
20+
sentry-test-server = {git = "https://github.com/timfish/sentry-test-server.git", rev = "4d53bfe"}
2121

2222
[features]
2323
ipc = [ "dep:serde", "dep:serde_json"]

README.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
1-
# `sentry-rust-minidump`
1+
# `sentry-rust-minidump`
22

33
![Master branch integration test status](https://img.shields.io/github/actions/workflow/status/timfish/sentry-rust-minidump/test.yml?label=Integration%20Tests&style=for-the-badge)
44

55
Uses the [`minidumper-child`](https://github.com/timfish/minidumper-child) crate
66
to capture minidumps from a separate process and sends them to Sentry as
7-
attachments via the Sentry Rust SDK.
7+
attachments via the Sentry Rust SDK.
88

9-
`sentry_rust_minidump::init` starts the current executable again with an argument that
10-
causes it to start in crash reporter mode. In this mode it waits for minidump
11-
notification from the main app process and handles writing and sending of the
12-
minidump file as an attachment to Sentry.
9+
`sentry_rust_minidump::init` starts the current executable again with an
10+
argument that causes it to start in crash reporter mode. In this mode it waits
11+
for minidump notification from the main app process and handles writing and
12+
sending of the minidump file as an attachment to Sentry.
1313

1414
Everything before `sentry_rust_minidump::init` is called in both the main and
15-
crash reporter processes and should configure and start Sentry. Everything
16-
after `sentry_rust_minidump::init` is only called in the main process to run
17-
your application code.
15+
crash reporter processes and should configure and start Sentry. Everything after
16+
`sentry_rust_minidump::init` is only called in the main process to run your
17+
application code.
1818

1919
```toml
2020
[dependencies]
21-
sentry = "0.34"
22-
sentry-rust-minidump = "0.8"
21+
sentry = "0.35"
22+
sentry-rust-minidump = "0.9"
2323
```
2424

2525
```rust
@@ -44,7 +44,7 @@ fn main() {
4444

4545
By default there is no scope synchronisation from the app process to the crash
4646
reporter process. This means that native crash event will be missing
47-
breadcrumbs, user, tags or extra added to the scope in the app.
47+
breadcrumbs, user, tags or extra added to the scope in the app.
4848

4949
When the `ipc` feature is enabled, you can send scope updates to the crash
5050
reporter process:
@@ -64,4 +64,4 @@ fn main() {
6464

6565
// Don't drop crash_reporter or the reporter process will close!
6666
}
67-
```
67+
```

0 commit comments

Comments
 (0)