-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
58 lines (49 loc) · 1.24 KB
/
Cargo.toml
File metadata and controls
58 lines (49 loc) · 1.24 KB
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
[package]
name = "sigstrike"
version = "0.1.5"
edition = "2024"
description = "Cobalt Strike beacon crawler and parser."
license = "MIT"
readme = "README.md"
repository = "https://github.com/rushter/SigStrike"
homepage = "https://github.com/rushter/SigStrike"
keywords = ["cobalt_strike", "beacon", "crawler", "parser"]
authors = ["Artem Golubin <me@rushter.com>"]
rust-version = "1.90.0"
[dependencies]
log = "0.4.27"
env_logger = "0.11.8"
bitflags = "2.9.1"
num_enum = "0.7.3"
sha2 = "0.11.0-rc.0"
byteorder = "1.5.0"
encoding_rs = "0.8.35"
encoding_rs_io = "0.1.7"
memchr = "2.7.4"
serde_json = "1.0.140"
serde = { version = "1.0.219", features = ["derive"] }
walkdir = "2.5.0"
clap = { version = "4.5.40", features = ["derive"] }
reqwest = { version = "0.12.20", features = ["stream", "gzip"] }
tokio = { version = "1.45.1", features = ["full"] }
futures = "0.3.31"
rand = "0.9.1"
url = "2.5.0"
indicatif = "0.17.7"
pyo3 = { version = "0.25.1", features = ["extension-module"], optional = true }
hex = "0.4.3"
[target.'cfg(not(windows))'.dependencies]
libc = "0.2.151"
[dev-dependencies]
zip = "4.1.0"
[lib]
name = "sigstrike"
crate-type = ["cdylib", "rlib"]
[features]
default = []
python = [
"pyo3",
]
[[bin]]
name = "sigstrike"
path = "src/main.rs"