forked from trustification/trustification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
128 lines (122 loc) · 3.38 KB
/
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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
[workspace]
resolver = "2"
members = [
"analytics",
"api",
"auth",
"bombastic/bombastic",
"bombastic/api",
"bombastic/model",
"bombastic/indexer",
"bombastic/index",
"bombastic/walker",
"common",
"common/walker",
"vexination/vexination",
"vexination/api",
"vexination/index",
"vexination/model",
"vexination/indexer",
"vexination/walker",
"reservoir/reservoir",
"reservoir/api",
"spog/api",
"spog/model",
"spog/spog",
"exhort/api",
"exhort/exhort",
"exhort/model",
"collectorist/api",
"collectorist/collectorist",
"collectorist/client",
"collector/collector",
"collector/client",
"collector/osv",
"collector/snyk",
"v11y/api",
"v11y/client",
"v11y/model",
"v11y/index",
"v11y/indexer",
"v11y/v11y",
"v11y/walker",
"integration-tests",
"trust",
"exporter",
"event-bus",
"storage",
"index",
"infrastructure",
"version",
"admin",
"indexer",
"xtask",
]
default-members = [
"analytics",
"auth",
"bombastic/bombastic",
"bombastic/api",
"bombastic/model",
"bombastic/indexer",
"bombastic/index",
"common",
"common/walker",
"vexination/vexination",
"vexination/api",
"vexination/index",
"vexination/model",
"vexination/indexer",
"vexination/walker",
"reservoir/reservoir",
"reservoir/api",
"spog/api",
"spog/model",
"spog/spog",
"exhort/api",
"exhort/exhort",
"exhort/model",
"collectorist/api",
"collectorist/collectorist",
"collectorist/client",
"collector/collector",
"collector/client",
"collector/osv",
"collector/snyk",
"v11y/api",
"v11y/client",
"v11y/model",
"v11y/index",
"v11y/indexer",
"v11y/v11y",
"v11y/walker",
"trust",
"exporter",
"event-bus",
"storage",
"index",
"infrastructure",
"version",
"indexer",
]
[workspace.dependencies]
guac = { version = "0.7.2-0" }
#guac = { path = "../guac-rs/lib" }
[patch.crates-io]
#tantivy = { path = "../tantivy" }
#sikula = { git = "https://github.com/ctron/sikula", rev = "023c27232f016b80a34c8ed77b88d1c30dcae6e0" }
#sikula = { path = "../sikula" }
# csaf-walker = { path = "../csaf-walker/csaf" }
# walker-common = { path = "../csaf-walker/common" }
#cpe = { git = "https://github.com/trustification/cpe-rs", rev = "dc2c5661d436410cc9562596ab16a2e771261eb2" }
csaf = { git = "https://github.com/ctron/csaf-rs", rev = "183326beac525d58962f78be8eca973017702753" } # FIXME: waiting for release #16 #28
# also check: spog/ui/Cargo.toml
# TODO Switch to the official repository once https://github.com/CycloneDX/cyclonedx-rust-cargo/issues/615 is fixed
#cyclonedx-bom = { git = "https://github.com/carlosthe19916/cyclonedx-rust-cargo", branch = "issue-615-trustification" }
#spdx-rs = { git = "https://github.com/trustification/spdx-rs", rev = "c65be086e898dae88609f07bbc5a224ba4e0838d" } # FIXME: awaiting doubleopen-project/spdx-rs#/27
#cve = { git = "https://github.com/ctron/cve", rev = "77341768d893098f1f8b1397364fecfb16b4d776" } # FIXME: awaiting release
#hide = { git = "https://github.com/ctron/hide", rev = "109059cce66fd85dbe40f59ad40b7dab47b70fe1" } # FIXME: awaiting release
# Do not generate debuginfo for dependencies in `dev` and `test` profiles. This
# save us some disk space
[profile.dev.package."*"]
debug = false