-
Notifications
You must be signed in to change notification settings - Fork 207
/
Cargo.toml
74 lines (68 loc) · 1.87 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
65
66
67
68
69
70
71
72
73
74
[package]
name = "hayabusa"
version = "3.0.0"
repository = "https://github.com/Yamato-Security/hayabusa"
authors = ["Yamato Security @SecurityYamato"]
edition = "2021"
rust-version = "1.83.0"
include = ["src/**/*", "LICENSE.txt", "README.md", "CHANGELOG.md"]
[dependencies]
aho-corasick = "*"
base64 = "*"
bytesize = "1.*"
chrono = "0.4.*"
cidr-utils = "0.6.*"
clap = { version = "4.*", features = ["derive", "cargo", "color"]}
colored = "2"
comfy-table = "7.*"
compact_str = "0.8.*"
console = "0.15.*"
csv = "1.3.*"
dashmap = "*"
dialoguer = "*"
downcast-rs = "1.*"
evtx = { git = "https://github.com/Yamato-Security/hayabusa-evtx.git" , features = ["fast-alloc"] , rev = "cd33263" } # 0.8.13 2024/12/23 update
git2 = "0.*"
hashbrown = "0.15.*"
hex = "0.4.*"
horrorshow = "0.8.*"
indexmap = "2.*"
indicatif = "*"
infer = "*"
itertools = "*"
krapslog = "0.6"
lazy_static = "1.5.*"
libmimalloc-sys = { version = "*", features = ["extended"] }
maxminddb = "0.*"
memchr = "2.*"
mimalloc = { version = "*", default-features = false }
nested="*"
num = "0.4.0"
num-format = "*"
pulldown-cmark = { version = "0.9.*", default-features = false, features = ["simd"] }
rand = "0.8.*"
regex = "1"
serde = { version = "1.*", features = ["derive"] }
serde_derive = "1.*"
serde_json = { version = "1.0"}
termcolor = "*"
terminal_size = "*"
tokio = { version = "1", features = ["full"] }
ureq = "*"
wildmatch = "2.*"
yaml-rust2 = "0.9"
rust-embed={version = "8.5.0", features = ["include-exclude", "debug-embed"]}
encoding_rs = "0.8.35"
walkdir = "2.5.0"
uuid = { version = "1.11.0", features = ["v4"] }
[profile.dev]
debug-assertions = false
[dev-dependencies]
rand = "0.8.*"
[target.'cfg(windows)'.dependencies]
is_elevated = "0.1.*"
[target.'cfg(unix)'.dependencies] #Mac and Linux
openssl = { version = "*", features = ["vendored"] } #vendored is needed to compile statically.
[profile.release]
lto = true
strip = "symbols"