Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ pub mod coredump;
mod cython;
pub mod dump;
#[cfg(feature = "unwind")]
mod native_stack_trace;
pub mod native_stack_trace;
mod python_bindings;
mod python_data_access;
mod python_interpreters;
Expand All @@ -53,5 +53,7 @@ mod version;
pub use config::Config;
pub use python_spy::PythonSpy;
pub use remoteprocess::Pid;
#[cfg(feature = "unwind")]
pub use remoteprocess::{Thread, Tid};
pub use stack_trace::Frame;
pub use stack_trace::StackTrace;