-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
96 lines (82 loc) · 2.45 KB
/
Copy pathCargo.toml
File metadata and controls
96 lines (82 loc) · 2.45 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[package]
name = "assemblyline-server"
version = "0.2.32"
edition = "2021"
license = "MIT"
repository = "https://github.com/cybercentreCanada/assemblyline-rust"
homepage = "https://www.cyber.gc.ca/en/tools-services/assemblyline"
description = """Server package for the Assemblyline malware analysis platform."""
[dependencies]
# Logging
log = "0.4"
flexi_logger = { version = "0.31", features=["syslog_writer"] }
gethostname = "1.0"
local-ip-address = "0.6"
# Metric collection
tracing = "0.1"
tracing-subscriber = { version = "0.3", default-features=false, features=["std", "fmt"]}
tracing-elastic-apm = "3.4"
# Utilities
chrono = "0.4"
tempfile = "3.19"
rand = "0.9"
itertools = "0.14"
anyhow = "1.0"
thiserror = "2.0"
bytes = "1.11"
parking_lot = { version = "0.12", features = [] }
strum = { version = "0.27", features = ["derive"] }
# strum_macros = "0.27"
environment_template = "0.1"
clap = { version = "4.5", features = ["derive"] }
hex = "0.4"
uuid = "1.10"
urlencoding = "2.1"
zip = "6.0"
cart_container = "1.0"
yara = { version = "0.30", features = ["serde", "vendored"] }
magic = "0.16.2"
csv-scout = "0.0.9"
magika = { version = "0.2.1", features = ["serde"] }
ort = {version = "=2.0.0-rc.10", features = ["download-binaries"]}
# Core framework
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
futures = "0.3"
# Network libraries
reqwest = { version = "0.12", features = ["json", "native-tls"] }
poem = { version = "3.1", features = ["websocket", "openssl-tls", "anyhow", "multipart"] }
url = "2.5"
# tokio-tungstenite = "0.26"
# Crypto/hash libraries
digest = "0.10"
openssl = { version = "0.10" }
sha1 = "0.10"
sha2 = "0.10"
md-5 = "0.10"
tlsh2 = "0.4"
# ssdeep = "0.6"
ffuzzy = "0.3"
# Database tools
redis-objects = { version = "1.2", path = "../redis-objects" }
# Data managing
assemblyline-markings = { version = "0.2.0", path = "../assemblyline-markings" }
assemblyline-filestore = { version = "0.2", path = "../assemblyline-filestore" }
assemblyline-models = { version = "0.7", path = "../assemblyline-models", features = ["rand"] }
struct-metadata = { version = "1.3", features = ["serde_json"] }
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = "1.0"
serde_yaml = "0.9"
serde_with = "3.12"
# data parsing
nom = "8"
regex = "1.11"
[dependencies.pyo3]
version = "0.27.1"
features = ["auto-initialize"]
#[dependencies.magic-sys]
#version = "0.3"
# default-features = false
# features = ["v5-44"]
[dev-dependencies]
env_logger = "0"