-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
64 lines (53 loc) · 1.64 KB
/
Cargo.toml
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[package]
name = "fse_dump"
description = "Dumps the fseventsd entries from a mac"
version = "2.1.0"
edition = "2021"
authors = ["Adam Lesperance <[email protected]>"]
categories = ["os::macos-apis", "command-line-utilities"]
keywords = ["mac", "fseventsd", "security", "forensics"]
license = "MIT OR Apache-2.0"
readme = "README.md"
homepage = "https://github.com/lespea/fse_dump"
repository = "https://github.com/lespea/fse_dump"
[badges]
maintenance = { status = "actively-developed" }
[features]
default = ["hex", "extra_id", "watch", "zstd"]
alt_flags = []
extra_id = []
hex = ["dep:serde-hex"]
watch = ["dep:notify-debouncer-full"]
zstd = ["dep:zstd"]
[dependencies]
bus = "2"
byteorder = "1"
clap = { version = "4", features = ["derive"] }
clap_complete = "4"
color-eyre = { version = "0", default-features = false }
crossbeam = "0"
crossbeam-channel = "0"
csv = "1"
env_logger = "0"
flate2 = { version = "1", features = ["cloudflare_zlib"], default-features = false }
hashbrown = "0"
log = { version = "0", features = ["max_level_debug", "release_max_level_info"] }
mimalloc = { version = "0", features = ["secure"] }
notify = { version = "7", default-features = false, features = ["macos_kqueue"] }
notify-debouncer-full = { version = "0", optional = true }
regex = "1"
serde = { version = "1", features = ["rc"] }
serde-hex = { version = "0", optional = true }
serde_derive = "1"
serde_json = "1"
serde_yaml = "0"
time = { version = "0", features = ["local-offset"] }
walkdir = "2"
zstd = { version = "0", features = ["zstdmt"], optional = true }
[profile.dev]
opt-level = 1
[profile.release]
codegen-units = 1
incremental = false
lto = true
strip = true