Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Turn of pprof default features #491

Merged
merged 1 commit into from Aug 11, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions sentry-core/Cargo.toml
Expand Up @@ -41,10 +41,10 @@ build_id = { version = "0.2.1", optional = true }
findshlibs = { version = "=0.10.2", optional = true }

[target.'cfg(all(not(target_os = "windows"), not(all(target_os = "macos", target_arch = "aarch64"))))'.dependencies]
pprof = { version = "0.10.0", optional = true }
pprof = { version = "0.10.0", optional = true, default-features = false }

[target.'cfg(all(target_os = "macos", target_arch = "aarch64"))'.dependencies]
pprof = { version = "0.10.0", optional = true, features = ["frame-pointer"]}
pprof = { version = "0.10.0", optional = true, default-features = false, features = ["frame-pointer"]}

[dev-dependencies]
# Because we re-export all the public API in `sentry`, we actually run all the
Expand Down