You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+13-13
Original file line number
Diff line number
Diff line change
@@ -1,25 +1,25 @@
1
-
# `sentry-rust-minidump`
1
+
# `sentry-rust-minidump`
2
2
3
3

4
4
5
5
Uses the [`minidumper-child`](https://github.com/timfish/minidumper-child) crate
6
6
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.
8
8
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.
13
13
14
14
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.
18
18
19
19
```toml
20
20
[dependencies]
21
-
sentry = "0.34"
22
-
sentry-rust-minidump = "0.8"
21
+
sentry = "0.35"
22
+
sentry-rust-minidump = "0.9"
23
23
```
24
24
25
25
```rust
@@ -44,7 +44,7 @@ fn main() {
44
44
45
45
By default there is no scope synchronisation from the app process to the crash
46
46
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.
48
48
49
49
When the `ipc` feature is enabled, you can send scope updates to the crash
50
50
reporter process:
@@ -64,4 +64,4 @@ fn main() {
64
64
65
65
// Don't drop crash_reporter or the reporter process will close!
0 commit comments