forked from MagnetForensics/dumpit-linux
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (25 loc) · 689 Bytes
/
Copy pathCargo.toml
File metadata and controls
28 lines (25 loc) · 689 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "dumpitforlinux"
version = "0.1.0"
edition = "2021"
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
byteorder = "1.4.3"
chrono = "0.4.22"
clap = {version = "4.0.11", features = ["derive"] }
env_logger = "0.9.1"
goblin = "0.5.4"
indicatif = "0.17.1"
log = "0.4.17"
memoffset = "0.6.5"
nix = "0.25.0"
object = {version = "0.29.0", features = ["read", "write"]}
tabled = "0.8.0"
tar = "0.4.38"
zstd = "0.11.2"
unix-named-pipe = "0.2"
[build-dependencies]
anyhow = "1.0.65"
vergen = {version = "7.4.3", default-features = false, features = ["build", "git", "rustc"] }
pkg-config = "^0.3.3"