-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (36 loc) · 805 Bytes
/
Cargo.toml
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
[workspace]
members = [
"src/actions",
"src/collector",
"src/config",
"src/crypto",
"src/keygen",
"src/logging",
"src/privileges",
"src/report",
"src/storage",
"src/system",
"src/time",
"src/unpacker",
"src/workflow",
"src/config",
"src/utils",
]
default-members = [
"src/collector",
"src/unpacker",
"src/keygen",
]
resolver = "2"
[workspace.dependencies]
crypto = { path = "src/crypto" }
workflow = { path = "src/workflow" }
logging = { path = "src/logging" }
privileges = { path = "src/privileges" }
system = { path = "src/system" }
time = { path = "src/time" }
storage = { path = "src/storage" }
config = { path = "src/config" }
report = { path = "src/report" }
utils = { path = "src/utils" }
actions = { path = "src/actions" }