blob: ff1a219580caf0e7ed9aa31d8c950a0c047b4f90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
[package]
name = "minidump_writer_linux"
version = "0.1.0"
authors = ["Martin Sirringhaus"]
edition = "2018"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tempfile = "3.1.0"
nix = "0.13.1"
libc = "0.2.74"
memoffset = "0.5.1"
byteorder = "1.3.2"
memmap = "0.7.0"
goblin = "0.1.2"
[dev-dependencies]
minidump = {git = "https://github.com/luser/rust-minidump" }
minidump-common = {git = "https://github.com/luser/rust-minidump" }
|