-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (42 loc) · 881 Bytes
/
Cargo.toml
File metadata and controls
46 lines (42 loc) · 881 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
42
43
44
45
46
[workspace]
members = [
"crates/cli",
"crates/loader",
"crates/engine",
"crates/patterns",
"crates/ir",
"crates/parsers",
"crates/reporters",
"crates/rego_wasm",
"benches",
"crates/plugin_core",
"crates/debugger",
]
default-members = [
"crates/cli",
"crates/loader",
"crates/engine",
"crates/patterns",
"crates/ir",
"crates/parsers",
"crates/reporters",
"crates/rego_wasm",
]
resolver = "2"
[workspace.package]
edition = "2021"
license = "GPL-3.0"
authors = ["M3str3 <M3str3@rootcause.sh>"]
[workspace.dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
regex = "1"
rayon = "1"
'serde-sarif' = "0.8"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }
shlex = "1"
base64 = "0.21"
fancy-regex = "0.11"
pcre2 = "0.2"