-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (39 loc) · 945 Bytes
/
Copy pathCargo.toml
File metadata and controls
41 lines (39 loc) · 945 Bytes
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
[workspace]
members = [
"crates/pqc_scan_cli",
"crates/pqc_scan_core",
"crates/pqc_scan_rules",
"crates/pqc_scan_detectors",
"crates/pqc_scan_report",
]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MIT"
authors = ["pqc-scan contributors"]
[workspace.dependencies]
anyhow = "1.0.102"
thiserror = "2.0.18"
clap = { version = "4.5.60", features = ["derive"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
serde_yaml = "0.9.34"
regex = "1.12.3"
aho-corasick = "1.1.4"
rayon = "1.11.0"
ignore = "0.4.25"
walkdir = "2.5.0"
x509-parser = "0.18.1"
pem = "3.0.6"
sha2 = "0.10.9"
hex = "0.4.3"
chrono = { version = "0.4.44", features = ["serde", "clock"] }
num_cpus = "1.17.0"
tree-sitter = "0.26.6"
tree-sitter-go = "0.25.0"
tree-sitter-java = "0.23.5"
tree-sitter-javascript = "0.25.0"
tree-sitter-python = "0.25.0"
tree-sitter-rust = "0.24.0"
tree-sitter-ruby = "0.23.1"