-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (41 loc) · 1.22 KB
/
Copy pathCargo.toml
File metadata and controls
43 lines (41 loc) · 1.22 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
[workspace]
members = [
"crates/cerberus-core",
"crates/cerberus-cli",
]
resolver = "2"
[workspace.package]
version = "1.1.0"
edition = "2024"
license = "MIT"
authors = ["Abderaouf Benamirouche <Abderaouf.benamirouche@gmail.com>"]
repository = "https://github.com/ryolution/cerberus-ct"
description = "Static CT-native Rust engine for phishing, brand abuse, and DNS exposure detection"
readme = "README.md"
[workspace.dependencies]
anyhow = "1"
async-trait = "0.1"
clap = { version = "4", features = ["derive", "env"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
time = { version = "0.3", features = ["formatting"] }
tokio = { version = "1", features = ["macros", "rt-multi-thread", "time", "net"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
unicode-security = "0.1"
x509-parser = "0.18"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "charset", "gzip"] }
hickory-resolver = "0.26"
base64 = "0.22"
ed25519-dalek = "2"
fs2 = "0.4"
futures = "0.3"
hex = "0.4"
idna = "1"
psl = "2"
ring = "0.17"
sha2 = "0.10"
url = "2"
yaml_serde = "0.10"
windows-sys = { version = "0.61", features = ["Win32_Storage_FileSystem"] }