Skip to content

Commit

Permalink
Always write raw data to disk
Browse files Browse the repository at this point in the history
  • Loading branch information
jvns committed Feb 20, 2018
1 parent 80e014b commit 8fe1ad5
Show file tree
Hide file tree
Showing 5 changed files with 171 additions and 18 deletions.
65 changes: 65 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,13 @@ rand = "0.4"
read-process-memory = "0.1.0"
failure = "0.1.1"
failure_derive = "0.1.1"
flate2 = "1"
nix = "0.10.0"
libc = "0.2.34"
rbspy-ruby-structs = { path = "ruby-structs", version="0.1.0" }
serde = "1"
serde_derive = "1"
serde_json = "1"
term_size = "0.3"
tempdir = "0.3"

Expand Down
2 changes: 1 addition & 1 deletion src/core/initialize.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ pub fn initialize(pid: pid_t) -> Result<StackTraceGetter, Error> {
})
}

#[derive(Debug, PartialEq, Eq, Hash, Clone)]
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
pub struct StackFrame {
pub name: String,
pub relative_path: String,
Expand Down

0 comments on commit 8fe1ad5

Please sign in to comment.