50 lines
1.2 KiB
TOML
50 lines
1.2 KiB
TOML
[package]
|
|
name = "hayabusa"
|
|
version = "1.3.1-dev"
|
|
authors = ["Yamato Security @SecurityYamato"]
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
evtx = { git = "https://github.com/omerbenamram/evtx.git" , rev = "95a8ca6" , features = ["fast-alloc"]}
|
|
quick-xml = {version = "0.23.0", features = ["serialize"] }
|
|
serde = { version = "1.0.*", features = ["derive"] }
|
|
serde_json = { version = "1.0"}
|
|
serde_derive = "1.0.*"
|
|
clap = "2.*"
|
|
regex = "1.5.*"
|
|
csv = "1.1.*"
|
|
base64 = "*"
|
|
flate2 = "1.0.*"
|
|
lazy_static = "1.4.0"
|
|
chrono = "0.4.19"
|
|
yaml-rust = "0.4.*"
|
|
linked-hash-map = "0.5.*"
|
|
tokio = { version = "1", features = ["full"] }
|
|
num_cpus = "1.13.*"
|
|
downcast-rs = "1.2.0"
|
|
hhmmss = "*"
|
|
pbr = "*"
|
|
hashbrown = "0.12.*"
|
|
hex = "0.4.*"
|
|
git2 = "0.13"
|
|
termcolor = "*"
|
|
prettytable-rs = "0.8"
|
|
krapslog = "*"
|
|
terminal_size = "*"
|
|
bytesize = "1.1"
|
|
hyper = "0.14.19"
|
|
lock_api = "0.4.7"
|
|
crossbeam-utils = "0.8.8"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
is_elevated = "0.1.2"
|
|
static_vcruntime = "2.0"
|
|
|
|
[target.'cfg(unix)'.dependencies] #Mac and Linux
|
|
openssl = { version = "*", features = ["vendored"] } #vendored is needed to compile statically.
|
|
|
|
[profile.release]
|
|
lto = true
|
|
strip = "symbols" |