-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathCargo.toml
59 lines (51 loc) · 1.44 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
[package]
name = "laurel"
version = "0.7.2"
authors = ["Hilko Bengen <[email protected]>",
"Sergej Schmidt <[email protected]>"]
edition = "2021"
rust-version = "1.70"
description = "Transform Linux Audit logs for SIEM usage"
homepage = "https://github.com/threathunters-io/laurel"
repository = "https://github.com/threathunters-io/laurel"
license = "GPL-3.0-or-later"
keywords = ["linux", "audit", "parser", "log", "json"]
categories = ["encoding"]
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
lazy_static = "1"
getopts = "0.2"
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = ["preserve_order"] }
indexmap = { version = "2", features = ["serde"] }
toml = ">= 0.5"
nix = { version = ">= 0.26", features = ["user", "fs", "time", "process", "signal"]}
libc = "0.2"
exacl = ">= 0.6"
regex = "1"
signal-hook = "0.3"
tinyvec = { version = "1", features = ["alloc", "serde"] }
log = "0.4"
simple_logger = ">= 1"
syslog = "7"
thiserror = "2"
anyhow = "1"
faster-hex = ">= 0.9"
linux-audit-parser = "0.2.6"
serde_with = { version = "3", default-features = false, features = ["macros"] }
serde_bytes = "0.11.15"
ipnetwork = "0.21.1"
[target.'cfg(target_os = "linux")'.dependencies]
caps = "0.5"
[build-dependencies]
bindgen = ">= 0.60"
[dev-dependencies]
divan = "0.1.13"
gperftools = "0"
[features]
procfs = []
default = ["procfs"]
[[bench]]
name = "coalesce_execve"
harness = false