Skip to content

Commit

Permalink
Merge pull request #85 from rust-minidump/remove-chrono
Browse files Browse the repository at this point in the history
Avoid pulling in `chrono`
  • Loading branch information
gabrielesvelto committed Jun 26, 2023
2 parents b8f63dd + 59c9873 commit 7558422
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Cargo.toml
Expand Up @@ -32,7 +32,8 @@ nix = { version = "0.26", default-features = false, features = [
"user",
] }
# Used for parsing procfs info.
procfs-core = "0.16.0-RC1"
# default-features is disabled since it pulls in chrono
procfs-core = { version = "0.16.0-RC1", default-features = false }

[target.'cfg(target_os = "windows")'.dependencies]
bitflags = "2.0"
Expand Down

0 comments on commit 7558422

Please sign in to comment.