Skip to content

Commit b95e2e9

Browse files
committed
docs: debug-images should be listed as a default feature
1 parent 6ef6d97 commit b95e2e9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

sentry/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ extra setup to function properly.
7373
| `transport` || | | |
7474
| `anyhow` | | 🔌 | | |
7575
| `test` | | | | |
76-
| `debug-images` | | 🔌 | | |
76+
| `debug-images` | | 🔌 | | |
7777
| `log` | | 🔌 | | Requires extra setup; See [`sentry-log`]'s documentation. |
7878
| `debug-logs` | | || Requires extra setup; See [`sentry-log`]'s documentation. |
7979
| `slog` | | 🔌 | | Requires extra setup; See [`sentry-slog`]'s documentation. |
@@ -95,11 +95,11 @@ extra setup to function properly.
9595
- `contexts`: Enables capturing device, OS, and Rust contexts.
9696
- `panic`: Enables support for capturing panics.
9797
- `transport`: Enables the default transport, which is currently `reqwest` with `native-tls`.
98+
- `debug-images`: Enables capturing metadata about the loaded shared libraries.
9899

99100
### Debugging/Testing
100101
- `anyhow`: Enables support for the `anyhow` crate.
101102
- `test`: Enables testing support.
102-
- `debug-images`: Attaches a list of loaded libraries to events (currently only supported on Unix).
103103

104104
### Logging
105105
- `log`: Enables support for the `log` crate.

sentry/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
//! | `transport` | ✅ | | | |
6666
//! | `anyhow` | | 🔌 | | |
6767
//! | `test` | | | | |
68-
//! | `debug-images` | | 🔌 | | |
68+
//! | `debug-images` | | 🔌 | | |
6969
//! | `log` | | 🔌 | | Requires extra setup; See [`sentry-log`]'s documentation. |
7070
//! | `debug-logs` | | | ❗ | Requires extra setup; See [`sentry-log`]'s documentation. |
7171
//! | `slog` | | 🔌 | | Requires extra setup; See [`sentry-slog`]'s documentation. |
@@ -87,11 +87,11 @@
8787
//! - `contexts`: Enables capturing device, OS, and Rust contexts.
8888
//! - `panic`: Enables support for capturing panics.
8989
//! - `transport`: Enables the default transport, which is currently `reqwest` with `native-tls`.
90+
//! - `debug-images`: Enables capturing metadata about the loaded shared libraries.
9091
//!
9192
//! ## Debugging/Testing
9293
//! - `anyhow`: Enables support for the `anyhow` crate.
9394
//! - `test`: Enables testing support.
94-
//! - `debug-images`: Attaches a list of loaded libraries to events (currently only supported on Unix).
9595
//!
9696
//! ## Logging
9797
//! - `log`: Enables support for the `log` crate.

0 commit comments

Comments
 (0)