oneagentgraph-cli 0.1.0__py3-none-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- oneagentgraph_cli-0.1.0.data/scripts/oneagentgraph +0 -0
- oneagentgraph_cli-0.1.0.dist-info/METADATA +106 -0
- oneagentgraph_cli-0.1.0.dist-info/RECORD +6 -0
- oneagentgraph_cli-0.1.0.dist-info/WHEEL +4 -0
- oneagentgraph_cli-0.1.0.dist-info/licenses/LICENSE +21 -0
- oneagentgraph_cli-0.1.0.dist-info/sboms/oneagentgraph.cyclonedx.json +1183 -0
|
Binary file
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: oneagentgraph-cli
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Classifier: Development Status :: 3 - Alpha
|
|
5
|
+
Classifier: Environment :: Console
|
|
6
|
+
Classifier: Intended Audience :: Developers
|
|
7
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Classifier: Programming Language :: Rust
|
|
10
|
+
Classifier: Topic :: Software Development :: Build Tools
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
Summary: Compose agents into a graph over oneharness/onejudge and merge their outputs into one event stream.
|
|
13
|
+
Keywords: agents,orchestration,cli,ndjson,llm
|
|
14
|
+
Home-Page: https://github.com/nickderobertis/oneagentgraph
|
|
15
|
+
Author: Nick DeRobertis
|
|
16
|
+
License: MIT
|
|
17
|
+
Requires-Python: >=3.9
|
|
18
|
+
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
19
|
+
Project-URL: Homepage, https://github.com/nickderobertis/oneagentgraph
|
|
20
|
+
Project-URL: Repository, https://github.com/nickderobertis/oneagentgraph
|
|
21
|
+
|
|
22
|
+
# oneagentgraph
|
|
23
|
+
|
|
24
|
+
Compose agents into a graph over [oneharness] and [onejudge], and merge their
|
|
25
|
+
outputs into **one NDJSON event stream**.
|
|
26
|
+
|
|
27
|
+
One config file and one CLI call: the graph names an oneharness config per role
|
|
28
|
+
and side, and `oneagentgraph` constructs the invocations, supervises liveness,
|
|
29
|
+
and emits every turn, tool call, fallback, and settle as an event you can pipe
|
|
30
|
+
into anything.
|
|
31
|
+
|
|
32
|
+
> **Interface-only.** This repository currently ships the *contract* and the
|
|
33
|
+
> types, config schema, and CLI surface that implement it — and nothing behind
|
|
34
|
+
> them. Every command parses per the contract and then refuses with `NOT
|
|
35
|
+
> IMPLEMENTED` and exit code 3. Install it to pin the interface; do not wire it
|
|
36
|
+
> into a pipeline expecting work to happen. See [`docs/contract.md`].
|
|
37
|
+
|
|
38
|
+
## Install
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
pip install oneagentgraph-cli # prebuilt binary, no Rust toolchain
|
|
42
|
+
npm install -g oneagentgraph-cli # the same binary, via npm
|
|
43
|
+
cargo install oneagentgraph # from crates.io, compiled locally
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
To install a revision that has not been released yet, build it from the
|
|
47
|
+
repository:
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
cargo install --git https://github.com/nickderobertis/oneagentgraph --locked
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
Prebuilt archives for Linux (x86-64, arm64), macOS (Intel, Apple silicon), and
|
|
54
|
+
Windows (x86-64) are attached to every [release], with `sha256` checksums.
|
|
55
|
+
|
|
56
|
+
## What it does
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
oneagentgraph run graph.yaml --task "add the retry" --output json
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
A graph is YAML — members, the oneharness config each side uses, personas,
|
|
63
|
+
schedules, and dependencies:
|
|
64
|
+
|
|
65
|
+
```yaml
|
|
66
|
+
version: 1
|
|
67
|
+
name: node-scope
|
|
68
|
+
members:
|
|
69
|
+
worker:
|
|
70
|
+
kind: onejudge
|
|
71
|
+
base_config: ./onejudge.base.yaml
|
|
72
|
+
agent: { oneharness_config: ./oneharness.toml }
|
|
73
|
+
judge: { oneharness_config: ./oneharness.judge.toml }
|
|
74
|
+
mode: bypass
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
`run` streams one envelope per line. Exit `0` means every member settled, `1`
|
|
78
|
+
that one failed or died, `2` that the config is invalid.
|
|
79
|
+
|
|
80
|
+
**oneagentgraph owns no harness, model, or fallback logic.** oneharness keeps
|
|
81
|
+
owning identity chains, fallback, model pins, and quota classification; onejudge
|
|
82
|
+
keeps owning the two-party conversation. This composes them.
|
|
83
|
+
|
|
84
|
+
The full surface — the shared event envelope, the graph schema, every CLI
|
|
85
|
+
command, the event kinds, and the liveness rules — is [`docs/contract.md`].
|
|
86
|
+
|
|
87
|
+
## Develop
|
|
88
|
+
|
|
89
|
+
```bash
|
|
90
|
+
just bootstrap # from a clean clone
|
|
91
|
+
just check # the deterministic gate: format, clippy, tests, coverage, docs
|
|
92
|
+
just gate # check + the LLM-judge tier; the pre-push bar
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
[`AGENTS.md`](AGENTS.md) is the durable instruction layer for anyone — human or
|
|
96
|
+
agent — working here.
|
|
97
|
+
|
|
98
|
+
## Licence
|
|
99
|
+
|
|
100
|
+
MIT. See [LICENSE](LICENSE).
|
|
101
|
+
|
|
102
|
+
[oneharness]: https://github.com/nickderobertis/oneharness
|
|
103
|
+
[onejudge]: https://pypi.org/project/onejudge/
|
|
104
|
+
[release]: https://github.com/nickderobertis/oneagentgraph/releases
|
|
105
|
+
[`docs/contract.md`]: docs/contract.md
|
|
106
|
+
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
oneagentgraph_cli-0.1.0.data/scripts/oneagentgraph,sha256=QsbppuMntoZUTXI87LkaVAvBUChhe42KGI2r_AoakOo,711808
|
|
2
|
+
oneagentgraph_cli-0.1.0.dist-info/METADATA,sha256=o4oZG4yQfvxeUR7jlqdt4KgcJHSI_C10Elmy0IMmiWI,3752
|
|
3
|
+
oneagentgraph_cli-0.1.0.dist-info/WHEEL,sha256=7m8kjhP_K0tQ6qXK8P1IG2YeRznSaoXUEpeK3IfZx-I,102
|
|
4
|
+
oneagentgraph_cli-0.1.0.dist-info/licenses/LICENSE,sha256=JeBGdcXIUkoTZEHhkKd-FmKgdgumkH509Ob1QWJomVE,1072
|
|
5
|
+
oneagentgraph_cli-0.1.0.dist-info/sboms/oneagentgraph.cyclonedx.json,sha256=ftLXiFyvIMoD3LcZ4Nxj-uNnN3W2nvWbWjxLK_vG2lM,36384
|
|
6
|
+
oneagentgraph_cli-0.1.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Nick DeRobertis
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,1183 @@
|
|
|
1
|
+
{
|
|
2
|
+
"bomFormat": "CycloneDX",
|
|
3
|
+
"specVersion": "1.5",
|
|
4
|
+
"version": 1,
|
|
5
|
+
"serialNumber": "urn:uuid:06a170d1-a90b-43e7-ba4a-aa876a8fd12a",
|
|
6
|
+
"metadata": {
|
|
7
|
+
"timestamp": "2026-08-08T11:23:47.096813000Z",
|
|
8
|
+
"tools": [
|
|
9
|
+
{
|
|
10
|
+
"vendor": "CycloneDX",
|
|
11
|
+
"name": "cargo-cyclonedx",
|
|
12
|
+
"version": "0.5.9"
|
|
13
|
+
}
|
|
14
|
+
],
|
|
15
|
+
"component": {
|
|
16
|
+
"type": "application",
|
|
17
|
+
"bom-ref": "path+file:///Users/runner/work/oneagentgraph/oneagentgraph#0.1.0",
|
|
18
|
+
"name": "oneagentgraph",
|
|
19
|
+
"version": "0.1.0",
|
|
20
|
+
"description": "Compose agents into a graph over oneharness/onejudge and merge their outputs into one event stream.",
|
|
21
|
+
"scope": "required",
|
|
22
|
+
"licenses": [
|
|
23
|
+
{
|
|
24
|
+
"expression": "MIT"
|
|
25
|
+
}
|
|
26
|
+
],
|
|
27
|
+
"purl": "pkg:cargo/oneagentgraph@0.1.0?download_url=file://.",
|
|
28
|
+
"externalReferences": [
|
|
29
|
+
{
|
|
30
|
+
"type": "website",
|
|
31
|
+
"url": "https://github.com/nickderobertis/oneagentgraph"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"type": "vcs",
|
|
35
|
+
"url": "https://github.com/nickderobertis/oneagentgraph"
|
|
36
|
+
}
|
|
37
|
+
],
|
|
38
|
+
"components": [
|
|
39
|
+
{
|
|
40
|
+
"type": "library",
|
|
41
|
+
"bom-ref": "path+file:///Users/runner/work/oneagentgraph/oneagentgraph#0.1.0 bin-target-0",
|
|
42
|
+
"name": "oneagentgraph",
|
|
43
|
+
"version": "0.1.0",
|
|
44
|
+
"purl": "pkg:cargo/oneagentgraph@0.1.0?download_url=file://.#src/lib.rs"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"type": "application",
|
|
48
|
+
"bom-ref": "path+file:///Users/runner/work/oneagentgraph/oneagentgraph#0.1.0 bin-target-1",
|
|
49
|
+
"name": "oneagentgraph",
|
|
50
|
+
"version": "0.1.0",
|
|
51
|
+
"purl": "pkg:cargo/oneagentgraph@0.1.0?download_url=file://.#src/main.rs"
|
|
52
|
+
}
|
|
53
|
+
]
|
|
54
|
+
},
|
|
55
|
+
"properties": [
|
|
56
|
+
{
|
|
57
|
+
"name": "cdx:rustc:sbom:target:all_targets",
|
|
58
|
+
"value": "true"
|
|
59
|
+
}
|
|
60
|
+
]
|
|
61
|
+
},
|
|
62
|
+
"components": [
|
|
63
|
+
{
|
|
64
|
+
"type": "library",
|
|
65
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#anstream@1.0.0",
|
|
66
|
+
"name": "anstream",
|
|
67
|
+
"version": "1.0.0",
|
|
68
|
+
"description": "IO stream adapters for writing colored text that will gracefully degrade according to your terminal's capabilities.",
|
|
69
|
+
"scope": "required",
|
|
70
|
+
"hashes": [
|
|
71
|
+
{
|
|
72
|
+
"alg": "SHA-256",
|
|
73
|
+
"content": "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
74
|
+
}
|
|
75
|
+
],
|
|
76
|
+
"licenses": [
|
|
77
|
+
{
|
|
78
|
+
"expression": "MIT OR Apache-2.0"
|
|
79
|
+
}
|
|
80
|
+
],
|
|
81
|
+
"purl": "pkg:cargo/anstream@1.0.0",
|
|
82
|
+
"externalReferences": [
|
|
83
|
+
{
|
|
84
|
+
"type": "vcs",
|
|
85
|
+
"url": "https://github.com/rust-cli/anstyle.git"
|
|
86
|
+
}
|
|
87
|
+
]
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"type": "library",
|
|
91
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#anstyle-parse@1.0.0",
|
|
92
|
+
"name": "anstyle-parse",
|
|
93
|
+
"version": "1.0.0",
|
|
94
|
+
"description": "Parse ANSI Style Escapes",
|
|
95
|
+
"scope": "required",
|
|
96
|
+
"hashes": [
|
|
97
|
+
{
|
|
98
|
+
"alg": "SHA-256",
|
|
99
|
+
"content": "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
100
|
+
}
|
|
101
|
+
],
|
|
102
|
+
"licenses": [
|
|
103
|
+
{
|
|
104
|
+
"expression": "MIT OR Apache-2.0"
|
|
105
|
+
}
|
|
106
|
+
],
|
|
107
|
+
"purl": "pkg:cargo/anstyle-parse@1.0.0",
|
|
108
|
+
"externalReferences": [
|
|
109
|
+
{
|
|
110
|
+
"type": "vcs",
|
|
111
|
+
"url": "https://github.com/rust-cli/anstyle.git"
|
|
112
|
+
}
|
|
113
|
+
]
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"type": "library",
|
|
117
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#anstyle-query@1.1.5",
|
|
118
|
+
"name": "anstyle-query",
|
|
119
|
+
"version": "1.1.5",
|
|
120
|
+
"description": "Look up colored console capabilities",
|
|
121
|
+
"scope": "required",
|
|
122
|
+
"hashes": [
|
|
123
|
+
{
|
|
124
|
+
"alg": "SHA-256",
|
|
125
|
+
"content": "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
126
|
+
}
|
|
127
|
+
],
|
|
128
|
+
"licenses": [
|
|
129
|
+
{
|
|
130
|
+
"expression": "MIT OR Apache-2.0"
|
|
131
|
+
}
|
|
132
|
+
],
|
|
133
|
+
"purl": "pkg:cargo/anstyle-query@1.1.5",
|
|
134
|
+
"externalReferences": [
|
|
135
|
+
{
|
|
136
|
+
"type": "vcs",
|
|
137
|
+
"url": "https://github.com/rust-cli/anstyle.git"
|
|
138
|
+
}
|
|
139
|
+
]
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"type": "library",
|
|
143
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.14",
|
|
144
|
+
"name": "anstyle",
|
|
145
|
+
"version": "1.0.14",
|
|
146
|
+
"description": "ANSI text styling",
|
|
147
|
+
"scope": "required",
|
|
148
|
+
"hashes": [
|
|
149
|
+
{
|
|
150
|
+
"alg": "SHA-256",
|
|
151
|
+
"content": "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
152
|
+
}
|
|
153
|
+
],
|
|
154
|
+
"licenses": [
|
|
155
|
+
{
|
|
156
|
+
"expression": "MIT OR Apache-2.0"
|
|
157
|
+
}
|
|
158
|
+
],
|
|
159
|
+
"purl": "pkg:cargo/anstyle@1.0.14",
|
|
160
|
+
"externalReferences": [
|
|
161
|
+
{
|
|
162
|
+
"type": "vcs",
|
|
163
|
+
"url": "https://github.com/rust-cli/anstyle.git"
|
|
164
|
+
}
|
|
165
|
+
]
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"type": "library",
|
|
169
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#clap@4.6.6",
|
|
170
|
+
"name": "clap",
|
|
171
|
+
"version": "4.6.6",
|
|
172
|
+
"description": "A simple to use, efficient, and full-featured Command Line Argument Parser",
|
|
173
|
+
"scope": "required",
|
|
174
|
+
"hashes": [
|
|
175
|
+
{
|
|
176
|
+
"alg": "SHA-256",
|
|
177
|
+
"content": "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
|
|
178
|
+
}
|
|
179
|
+
],
|
|
180
|
+
"licenses": [
|
|
181
|
+
{
|
|
182
|
+
"expression": "MIT OR Apache-2.0"
|
|
183
|
+
}
|
|
184
|
+
],
|
|
185
|
+
"purl": "pkg:cargo/clap@4.6.6",
|
|
186
|
+
"externalReferences": [
|
|
187
|
+
{
|
|
188
|
+
"type": "vcs",
|
|
189
|
+
"url": "https://github.com/clap-rs/clap"
|
|
190
|
+
}
|
|
191
|
+
]
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"type": "library",
|
|
195
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#clap_builder@4.6.6",
|
|
196
|
+
"name": "clap_builder",
|
|
197
|
+
"version": "4.6.6",
|
|
198
|
+
"description": "A simple to use, efficient, and full-featured Command Line Argument Parser",
|
|
199
|
+
"scope": "required",
|
|
200
|
+
"hashes": [
|
|
201
|
+
{
|
|
202
|
+
"alg": "SHA-256",
|
|
203
|
+
"content": "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
|
|
204
|
+
}
|
|
205
|
+
],
|
|
206
|
+
"licenses": [
|
|
207
|
+
{
|
|
208
|
+
"expression": "MIT OR Apache-2.0"
|
|
209
|
+
}
|
|
210
|
+
],
|
|
211
|
+
"purl": "pkg:cargo/clap_builder@4.6.6",
|
|
212
|
+
"externalReferences": [
|
|
213
|
+
{
|
|
214
|
+
"type": "vcs",
|
|
215
|
+
"url": "https://github.com/clap-rs/clap"
|
|
216
|
+
}
|
|
217
|
+
]
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"type": "library",
|
|
221
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#clap_derive@4.6.4",
|
|
222
|
+
"name": "clap_derive",
|
|
223
|
+
"version": "4.6.4",
|
|
224
|
+
"description": "Parse command line argument by defining a struct, derive crate.",
|
|
225
|
+
"scope": "required",
|
|
226
|
+
"hashes": [
|
|
227
|
+
{
|
|
228
|
+
"alg": "SHA-256",
|
|
229
|
+
"content": "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061"
|
|
230
|
+
}
|
|
231
|
+
],
|
|
232
|
+
"licenses": [
|
|
233
|
+
{
|
|
234
|
+
"expression": "MIT OR Apache-2.0"
|
|
235
|
+
}
|
|
236
|
+
],
|
|
237
|
+
"purl": "pkg:cargo/clap_derive@4.6.4",
|
|
238
|
+
"externalReferences": [
|
|
239
|
+
{
|
|
240
|
+
"type": "vcs",
|
|
241
|
+
"url": "https://github.com/clap-rs/clap"
|
|
242
|
+
}
|
|
243
|
+
]
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"type": "library",
|
|
247
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#clap_lex@1.1.0",
|
|
248
|
+
"name": "clap_lex",
|
|
249
|
+
"version": "1.1.0",
|
|
250
|
+
"description": "Minimal, flexible command line parser",
|
|
251
|
+
"scope": "required",
|
|
252
|
+
"hashes": [
|
|
253
|
+
{
|
|
254
|
+
"alg": "SHA-256",
|
|
255
|
+
"content": "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
256
|
+
}
|
|
257
|
+
],
|
|
258
|
+
"licenses": [
|
|
259
|
+
{
|
|
260
|
+
"expression": "MIT OR Apache-2.0"
|
|
261
|
+
}
|
|
262
|
+
],
|
|
263
|
+
"purl": "pkg:cargo/clap_lex@1.1.0",
|
|
264
|
+
"externalReferences": [
|
|
265
|
+
{
|
|
266
|
+
"type": "vcs",
|
|
267
|
+
"url": "https://github.com/clap-rs/clap"
|
|
268
|
+
}
|
|
269
|
+
]
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"type": "library",
|
|
273
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#colorchoice@1.0.5",
|
|
274
|
+
"name": "colorchoice",
|
|
275
|
+
"version": "1.0.5",
|
|
276
|
+
"description": "Global override of color control",
|
|
277
|
+
"scope": "required",
|
|
278
|
+
"hashes": [
|
|
279
|
+
{
|
|
280
|
+
"alg": "SHA-256",
|
|
281
|
+
"content": "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
282
|
+
}
|
|
283
|
+
],
|
|
284
|
+
"licenses": [
|
|
285
|
+
{
|
|
286
|
+
"expression": "MIT OR Apache-2.0"
|
|
287
|
+
}
|
|
288
|
+
],
|
|
289
|
+
"purl": "pkg:cargo/colorchoice@1.0.5",
|
|
290
|
+
"externalReferences": [
|
|
291
|
+
{
|
|
292
|
+
"type": "vcs",
|
|
293
|
+
"url": "https://github.com/rust-cli/anstyle.git"
|
|
294
|
+
}
|
|
295
|
+
]
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"type": "library",
|
|
299
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2",
|
|
300
|
+
"name": "equivalent",
|
|
301
|
+
"version": "1.0.2",
|
|
302
|
+
"description": "Traits for key comparison in maps.",
|
|
303
|
+
"scope": "required",
|
|
304
|
+
"hashes": [
|
|
305
|
+
{
|
|
306
|
+
"alg": "SHA-256",
|
|
307
|
+
"content": "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
308
|
+
}
|
|
309
|
+
],
|
|
310
|
+
"licenses": [
|
|
311
|
+
{
|
|
312
|
+
"expression": "Apache-2.0 OR MIT"
|
|
313
|
+
}
|
|
314
|
+
],
|
|
315
|
+
"purl": "pkg:cargo/equivalent@1.0.2",
|
|
316
|
+
"externalReferences": [
|
|
317
|
+
{
|
|
318
|
+
"type": "vcs",
|
|
319
|
+
"url": "https://github.com/indexmap-rs/equivalent"
|
|
320
|
+
}
|
|
321
|
+
]
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
"type": "library",
|
|
325
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.17.1",
|
|
326
|
+
"name": "hashbrown",
|
|
327
|
+
"version": "0.17.1",
|
|
328
|
+
"description": "A Rust port of Google's SwissTable hash map",
|
|
329
|
+
"scope": "required",
|
|
330
|
+
"hashes": [
|
|
331
|
+
{
|
|
332
|
+
"alg": "SHA-256",
|
|
333
|
+
"content": "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
334
|
+
}
|
|
335
|
+
],
|
|
336
|
+
"licenses": [
|
|
337
|
+
{
|
|
338
|
+
"expression": "MIT OR Apache-2.0"
|
|
339
|
+
}
|
|
340
|
+
],
|
|
341
|
+
"purl": "pkg:cargo/hashbrown@0.17.1",
|
|
342
|
+
"externalReferences": [
|
|
343
|
+
{
|
|
344
|
+
"type": "vcs",
|
|
345
|
+
"url": "https://github.com/rust-lang/hashbrown"
|
|
346
|
+
}
|
|
347
|
+
]
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"type": "library",
|
|
351
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0",
|
|
352
|
+
"name": "heck",
|
|
353
|
+
"version": "0.5.0",
|
|
354
|
+
"description": "heck is a case conversion library.",
|
|
355
|
+
"scope": "required",
|
|
356
|
+
"hashes": [
|
|
357
|
+
{
|
|
358
|
+
"alg": "SHA-256",
|
|
359
|
+
"content": "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
360
|
+
}
|
|
361
|
+
],
|
|
362
|
+
"licenses": [
|
|
363
|
+
{
|
|
364
|
+
"expression": "MIT OR Apache-2.0"
|
|
365
|
+
}
|
|
366
|
+
],
|
|
367
|
+
"purl": "pkg:cargo/heck@0.5.0",
|
|
368
|
+
"externalReferences": [
|
|
369
|
+
{
|
|
370
|
+
"type": "vcs",
|
|
371
|
+
"url": "https://github.com/withoutboats/heck"
|
|
372
|
+
}
|
|
373
|
+
]
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
"type": "library",
|
|
377
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.14.0",
|
|
378
|
+
"name": "indexmap",
|
|
379
|
+
"version": "2.14.0",
|
|
380
|
+
"description": "A hash table with consistent order and fast iteration.",
|
|
381
|
+
"scope": "required",
|
|
382
|
+
"hashes": [
|
|
383
|
+
{
|
|
384
|
+
"alg": "SHA-256",
|
|
385
|
+
"content": "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
386
|
+
}
|
|
387
|
+
],
|
|
388
|
+
"licenses": [
|
|
389
|
+
{
|
|
390
|
+
"expression": "Apache-2.0 OR MIT"
|
|
391
|
+
}
|
|
392
|
+
],
|
|
393
|
+
"purl": "pkg:cargo/indexmap@2.14.0",
|
|
394
|
+
"externalReferences": [
|
|
395
|
+
{
|
|
396
|
+
"type": "documentation",
|
|
397
|
+
"url": "https://docs.rs/indexmap/"
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
"type": "vcs",
|
|
401
|
+
"url": "https://github.com/indexmap-rs/indexmap"
|
|
402
|
+
}
|
|
403
|
+
]
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
"type": "library",
|
|
407
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#is_terminal_polyfill@1.70.2",
|
|
408
|
+
"name": "is_terminal_polyfill",
|
|
409
|
+
"version": "1.70.2",
|
|
410
|
+
"description": "Polyfill for `is_terminal` stdlib feature for use with older MSRVs",
|
|
411
|
+
"scope": "required",
|
|
412
|
+
"hashes": [
|
|
413
|
+
{
|
|
414
|
+
"alg": "SHA-256",
|
|
415
|
+
"content": "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
416
|
+
}
|
|
417
|
+
],
|
|
418
|
+
"licenses": [
|
|
419
|
+
{
|
|
420
|
+
"expression": "MIT OR Apache-2.0"
|
|
421
|
+
}
|
|
422
|
+
],
|
|
423
|
+
"purl": "pkg:cargo/is_terminal_polyfill@1.70.2",
|
|
424
|
+
"externalReferences": [
|
|
425
|
+
{
|
|
426
|
+
"type": "vcs",
|
|
427
|
+
"url": "https://github.com/polyfill-rs/is_terminal_polyfill"
|
|
428
|
+
}
|
|
429
|
+
]
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
"type": "library",
|
|
433
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.18",
|
|
434
|
+
"author": "David Tolnay <dtolnay@gmail.com>",
|
|
435
|
+
"name": "itoa",
|
|
436
|
+
"version": "1.0.18",
|
|
437
|
+
"description": "Fast integer primitive to string conversion",
|
|
438
|
+
"scope": "required",
|
|
439
|
+
"hashes": [
|
|
440
|
+
{
|
|
441
|
+
"alg": "SHA-256",
|
|
442
|
+
"content": "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
443
|
+
}
|
|
444
|
+
],
|
|
445
|
+
"licenses": [
|
|
446
|
+
{
|
|
447
|
+
"expression": "MIT OR Apache-2.0"
|
|
448
|
+
}
|
|
449
|
+
],
|
|
450
|
+
"purl": "pkg:cargo/itoa@1.0.18",
|
|
451
|
+
"externalReferences": [
|
|
452
|
+
{
|
|
453
|
+
"type": "documentation",
|
|
454
|
+
"url": "https://docs.rs/itoa"
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
"type": "vcs",
|
|
458
|
+
"url": "https://github.com/dtolnay/itoa"
|
|
459
|
+
}
|
|
460
|
+
]
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
"type": "library",
|
|
464
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.8.3",
|
|
465
|
+
"author": "Andrew Gallant <jamslam@gmail.com>, bluss",
|
|
466
|
+
"name": "memchr",
|
|
467
|
+
"version": "2.8.3",
|
|
468
|
+
"description": "Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for 1, 2 or 3 byte search and single substring search. ",
|
|
469
|
+
"scope": "required",
|
|
470
|
+
"hashes": [
|
|
471
|
+
{
|
|
472
|
+
"alg": "SHA-256",
|
|
473
|
+
"content": "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
474
|
+
}
|
|
475
|
+
],
|
|
476
|
+
"licenses": [
|
|
477
|
+
{
|
|
478
|
+
"expression": "Unlicense OR MIT"
|
|
479
|
+
}
|
|
480
|
+
],
|
|
481
|
+
"purl": "pkg:cargo/memchr@2.8.3",
|
|
482
|
+
"externalReferences": [
|
|
483
|
+
{
|
|
484
|
+
"type": "documentation",
|
|
485
|
+
"url": "https://docs.rs/memchr/"
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
"type": "website",
|
|
489
|
+
"url": "https://github.com/BurntSushi/memchr"
|
|
490
|
+
},
|
|
491
|
+
{
|
|
492
|
+
"type": "vcs",
|
|
493
|
+
"url": "https://github.com/BurntSushi/memchr"
|
|
494
|
+
}
|
|
495
|
+
]
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
"type": "library",
|
|
499
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.107",
|
|
500
|
+
"author": "David Tolnay <dtolnay@gmail.com>, Alex Crichton <alex@alexcrichton.com>",
|
|
501
|
+
"name": "proc-macro2",
|
|
502
|
+
"version": "1.0.107",
|
|
503
|
+
"description": "A substitute implementation of the compiler's `proc_macro` API to decouple token-based libraries from the procedural macro use case.",
|
|
504
|
+
"scope": "required",
|
|
505
|
+
"hashes": [
|
|
506
|
+
{
|
|
507
|
+
"alg": "SHA-256",
|
|
508
|
+
"content": "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
509
|
+
}
|
|
510
|
+
],
|
|
511
|
+
"licenses": [
|
|
512
|
+
{
|
|
513
|
+
"expression": "MIT OR Apache-2.0"
|
|
514
|
+
}
|
|
515
|
+
],
|
|
516
|
+
"purl": "pkg:cargo/proc-macro2@1.0.107",
|
|
517
|
+
"externalReferences": [
|
|
518
|
+
{
|
|
519
|
+
"type": "documentation",
|
|
520
|
+
"url": "https://docs.rs/proc-macro2"
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
"type": "vcs",
|
|
524
|
+
"url": "https://github.com/dtolnay/proc-macro2"
|
|
525
|
+
}
|
|
526
|
+
]
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
"type": "library",
|
|
530
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.47",
|
|
531
|
+
"author": "David Tolnay <dtolnay@gmail.com>",
|
|
532
|
+
"name": "quote",
|
|
533
|
+
"version": "1.0.47",
|
|
534
|
+
"description": "Quasi-quoting macro quote!(...)",
|
|
535
|
+
"scope": "required",
|
|
536
|
+
"hashes": [
|
|
537
|
+
{
|
|
538
|
+
"alg": "SHA-256",
|
|
539
|
+
"content": "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
540
|
+
}
|
|
541
|
+
],
|
|
542
|
+
"licenses": [
|
|
543
|
+
{
|
|
544
|
+
"expression": "MIT OR Apache-2.0"
|
|
545
|
+
}
|
|
546
|
+
],
|
|
547
|
+
"purl": "pkg:cargo/quote@1.0.47",
|
|
548
|
+
"externalReferences": [
|
|
549
|
+
{
|
|
550
|
+
"type": "documentation",
|
|
551
|
+
"url": "https://docs.rs/quote/"
|
|
552
|
+
},
|
|
553
|
+
{
|
|
554
|
+
"type": "vcs",
|
|
555
|
+
"url": "https://github.com/dtolnay/quote"
|
|
556
|
+
}
|
|
557
|
+
]
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
"type": "library",
|
|
561
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.23",
|
|
562
|
+
"author": "David Tolnay <dtolnay@gmail.com>",
|
|
563
|
+
"name": "ryu",
|
|
564
|
+
"version": "1.0.23",
|
|
565
|
+
"description": "Fast floating point to string conversion",
|
|
566
|
+
"scope": "required",
|
|
567
|
+
"hashes": [
|
|
568
|
+
{
|
|
569
|
+
"alg": "SHA-256",
|
|
570
|
+
"content": "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
571
|
+
}
|
|
572
|
+
],
|
|
573
|
+
"licenses": [
|
|
574
|
+
{
|
|
575
|
+
"expression": "Apache-2.0 OR BSL-1.0"
|
|
576
|
+
}
|
|
577
|
+
],
|
|
578
|
+
"purl": "pkg:cargo/ryu@1.0.23",
|
|
579
|
+
"externalReferences": [
|
|
580
|
+
{
|
|
581
|
+
"type": "documentation",
|
|
582
|
+
"url": "https://docs.rs/ryu"
|
|
583
|
+
},
|
|
584
|
+
{
|
|
585
|
+
"type": "vcs",
|
|
586
|
+
"url": "https://github.com/dtolnay/ryu"
|
|
587
|
+
}
|
|
588
|
+
]
|
|
589
|
+
},
|
|
590
|
+
{
|
|
591
|
+
"type": "library",
|
|
592
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.229",
|
|
593
|
+
"author": "Erick Tryzelaar <erick.tryzelaar@gmail.com>, David Tolnay <dtolnay@gmail.com>",
|
|
594
|
+
"name": "serde",
|
|
595
|
+
"version": "1.0.229",
|
|
596
|
+
"description": "A generic serialization/deserialization framework",
|
|
597
|
+
"scope": "required",
|
|
598
|
+
"hashes": [
|
|
599
|
+
{
|
|
600
|
+
"alg": "SHA-256",
|
|
601
|
+
"content": "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
602
|
+
}
|
|
603
|
+
],
|
|
604
|
+
"licenses": [
|
|
605
|
+
{
|
|
606
|
+
"expression": "MIT OR Apache-2.0"
|
|
607
|
+
}
|
|
608
|
+
],
|
|
609
|
+
"purl": "pkg:cargo/serde@1.0.229",
|
|
610
|
+
"externalReferences": [
|
|
611
|
+
{
|
|
612
|
+
"type": "documentation",
|
|
613
|
+
"url": "https://docs.rs/serde"
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
"type": "website",
|
|
617
|
+
"url": "https://serde.rs"
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
"type": "vcs",
|
|
621
|
+
"url": "https://github.com/serde-rs/serde"
|
|
622
|
+
}
|
|
623
|
+
]
|
|
624
|
+
},
|
|
625
|
+
{
|
|
626
|
+
"type": "library",
|
|
627
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.229",
|
|
628
|
+
"author": "Erick Tryzelaar <erick.tryzelaar@gmail.com>, David Tolnay <dtolnay@gmail.com>",
|
|
629
|
+
"name": "serde_core",
|
|
630
|
+
"version": "1.0.229",
|
|
631
|
+
"description": "Serde traits only, with no support for derive -- use the `serde` crate instead",
|
|
632
|
+
"scope": "required",
|
|
633
|
+
"hashes": [
|
|
634
|
+
{
|
|
635
|
+
"alg": "SHA-256",
|
|
636
|
+
"content": "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
637
|
+
}
|
|
638
|
+
],
|
|
639
|
+
"licenses": [
|
|
640
|
+
{
|
|
641
|
+
"expression": "MIT OR Apache-2.0"
|
|
642
|
+
}
|
|
643
|
+
],
|
|
644
|
+
"purl": "pkg:cargo/serde_core@1.0.229",
|
|
645
|
+
"externalReferences": [
|
|
646
|
+
{
|
|
647
|
+
"type": "documentation",
|
|
648
|
+
"url": "https://docs.rs/serde_core"
|
|
649
|
+
},
|
|
650
|
+
{
|
|
651
|
+
"type": "website",
|
|
652
|
+
"url": "https://serde.rs"
|
|
653
|
+
},
|
|
654
|
+
{
|
|
655
|
+
"type": "vcs",
|
|
656
|
+
"url": "https://github.com/serde-rs/serde"
|
|
657
|
+
}
|
|
658
|
+
]
|
|
659
|
+
},
|
|
660
|
+
{
|
|
661
|
+
"type": "library",
|
|
662
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.229",
|
|
663
|
+
"author": "Erick Tryzelaar <erick.tryzelaar@gmail.com>, David Tolnay <dtolnay@gmail.com>",
|
|
664
|
+
"name": "serde_derive",
|
|
665
|
+
"version": "1.0.229",
|
|
666
|
+
"description": "Macros 1.1 implementation of #[derive(Serialize, Deserialize)]",
|
|
667
|
+
"scope": "required",
|
|
668
|
+
"hashes": [
|
|
669
|
+
{
|
|
670
|
+
"alg": "SHA-256",
|
|
671
|
+
"content": "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
672
|
+
}
|
|
673
|
+
],
|
|
674
|
+
"licenses": [
|
|
675
|
+
{
|
|
676
|
+
"expression": "MIT OR Apache-2.0"
|
|
677
|
+
}
|
|
678
|
+
],
|
|
679
|
+
"purl": "pkg:cargo/serde_derive@1.0.229",
|
|
680
|
+
"externalReferences": [
|
|
681
|
+
{
|
|
682
|
+
"type": "documentation",
|
|
683
|
+
"url": "https://serde.rs/derive.html"
|
|
684
|
+
},
|
|
685
|
+
{
|
|
686
|
+
"type": "website",
|
|
687
|
+
"url": "https://serde.rs"
|
|
688
|
+
},
|
|
689
|
+
{
|
|
690
|
+
"type": "vcs",
|
|
691
|
+
"url": "https://github.com/serde-rs/serde"
|
|
692
|
+
}
|
|
693
|
+
]
|
|
694
|
+
},
|
|
695
|
+
{
|
|
696
|
+
"type": "library",
|
|
697
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.151",
|
|
698
|
+
"author": "Erick Tryzelaar <erick.tryzelaar@gmail.com>, David Tolnay <dtolnay@gmail.com>",
|
|
699
|
+
"name": "serde_json",
|
|
700
|
+
"version": "1.0.151",
|
|
701
|
+
"description": "A JSON serialization file format",
|
|
702
|
+
"scope": "required",
|
|
703
|
+
"hashes": [
|
|
704
|
+
{
|
|
705
|
+
"alg": "SHA-256",
|
|
706
|
+
"content": "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
|
|
707
|
+
}
|
|
708
|
+
],
|
|
709
|
+
"licenses": [
|
|
710
|
+
{
|
|
711
|
+
"expression": "MIT OR Apache-2.0"
|
|
712
|
+
}
|
|
713
|
+
],
|
|
714
|
+
"purl": "pkg:cargo/serde_json@1.0.151",
|
|
715
|
+
"externalReferences": [
|
|
716
|
+
{
|
|
717
|
+
"type": "documentation",
|
|
718
|
+
"url": "https://docs.rs/serde_json"
|
|
719
|
+
},
|
|
720
|
+
{
|
|
721
|
+
"type": "vcs",
|
|
722
|
+
"url": "https://github.com/serde-rs/json"
|
|
723
|
+
}
|
|
724
|
+
]
|
|
725
|
+
},
|
|
726
|
+
{
|
|
727
|
+
"type": "library",
|
|
728
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde_norway@0.9.42",
|
|
729
|
+
"author": "Christina Sørensen <christina@cafkafk.com>, David Tolnay <dtolnay@gmail.com>",
|
|
730
|
+
"name": "serde_norway",
|
|
731
|
+
"version": "0.9.42",
|
|
732
|
+
"description": "YAML data format for Serde",
|
|
733
|
+
"scope": "required",
|
|
734
|
+
"hashes": [
|
|
735
|
+
{
|
|
736
|
+
"alg": "SHA-256",
|
|
737
|
+
"content": "e408f29489b5fd500fab51ff1484fc859bb655f32c671f307dcd733b72e8168c"
|
|
738
|
+
}
|
|
739
|
+
],
|
|
740
|
+
"licenses": [
|
|
741
|
+
{
|
|
742
|
+
"expression": "MIT OR Apache-2.0"
|
|
743
|
+
}
|
|
744
|
+
],
|
|
745
|
+
"purl": "pkg:cargo/serde_norway@0.9.42",
|
|
746
|
+
"externalReferences": [
|
|
747
|
+
{
|
|
748
|
+
"type": "vcs",
|
|
749
|
+
"url": "https://github.com/cafkafk/serde-yaml"
|
|
750
|
+
}
|
|
751
|
+
]
|
|
752
|
+
},
|
|
753
|
+
{
|
|
754
|
+
"type": "library",
|
|
755
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#strsim@0.11.1",
|
|
756
|
+
"author": "Danny Guo <danny@dannyguo.com>, maxbachmann <oss@maxbachmann.de>",
|
|
757
|
+
"name": "strsim",
|
|
758
|
+
"version": "0.11.1",
|
|
759
|
+
"description": "Implementations of string similarity metrics. Includes Hamming, Levenshtein, OSA, Damerau-Levenshtein, Jaro, Jaro-Winkler, and Sørensen-Dice. ",
|
|
760
|
+
"scope": "required",
|
|
761
|
+
"hashes": [
|
|
762
|
+
{
|
|
763
|
+
"alg": "SHA-256",
|
|
764
|
+
"content": "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
765
|
+
}
|
|
766
|
+
],
|
|
767
|
+
"licenses": [
|
|
768
|
+
{
|
|
769
|
+
"expression": "MIT"
|
|
770
|
+
}
|
|
771
|
+
],
|
|
772
|
+
"purl": "pkg:cargo/strsim@0.11.1",
|
|
773
|
+
"externalReferences": [
|
|
774
|
+
{
|
|
775
|
+
"type": "documentation",
|
|
776
|
+
"url": "https://docs.rs/strsim/"
|
|
777
|
+
},
|
|
778
|
+
{
|
|
779
|
+
"type": "website",
|
|
780
|
+
"url": "https://github.com/rapidfuzz/strsim-rs"
|
|
781
|
+
},
|
|
782
|
+
{
|
|
783
|
+
"type": "vcs",
|
|
784
|
+
"url": "https://github.com/rapidfuzz/strsim-rs"
|
|
785
|
+
}
|
|
786
|
+
]
|
|
787
|
+
},
|
|
788
|
+
{
|
|
789
|
+
"type": "library",
|
|
790
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#syn@3.0.3",
|
|
791
|
+
"author": "David Tolnay <dtolnay@gmail.com>",
|
|
792
|
+
"name": "syn",
|
|
793
|
+
"version": "3.0.3",
|
|
794
|
+
"description": "Parser for Rust source code",
|
|
795
|
+
"scope": "required",
|
|
796
|
+
"hashes": [
|
|
797
|
+
{
|
|
798
|
+
"alg": "SHA-256",
|
|
799
|
+
"content": "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
|
|
800
|
+
}
|
|
801
|
+
],
|
|
802
|
+
"licenses": [
|
|
803
|
+
{
|
|
804
|
+
"expression": "MIT OR Apache-2.0"
|
|
805
|
+
}
|
|
806
|
+
],
|
|
807
|
+
"purl": "pkg:cargo/syn@3.0.3",
|
|
808
|
+
"externalReferences": [
|
|
809
|
+
{
|
|
810
|
+
"type": "documentation",
|
|
811
|
+
"url": "https://docs.rs/syn"
|
|
812
|
+
},
|
|
813
|
+
{
|
|
814
|
+
"type": "vcs",
|
|
815
|
+
"url": "https://github.com/dtolnay/syn"
|
|
816
|
+
}
|
|
817
|
+
]
|
|
818
|
+
},
|
|
819
|
+
{
|
|
820
|
+
"type": "library",
|
|
821
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.19",
|
|
822
|
+
"author": "David Tolnay <dtolnay@gmail.com>",
|
|
823
|
+
"name": "thiserror-impl",
|
|
824
|
+
"version": "2.0.19",
|
|
825
|
+
"description": "Implementation detail of the `thiserror` crate",
|
|
826
|
+
"scope": "required",
|
|
827
|
+
"hashes": [
|
|
828
|
+
{
|
|
829
|
+
"alg": "SHA-256",
|
|
830
|
+
"content": "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd"
|
|
831
|
+
}
|
|
832
|
+
],
|
|
833
|
+
"licenses": [
|
|
834
|
+
{
|
|
835
|
+
"expression": "MIT OR Apache-2.0"
|
|
836
|
+
}
|
|
837
|
+
],
|
|
838
|
+
"purl": "pkg:cargo/thiserror-impl@2.0.19",
|
|
839
|
+
"externalReferences": [
|
|
840
|
+
{
|
|
841
|
+
"type": "vcs",
|
|
842
|
+
"url": "https://github.com/dtolnay/thiserror"
|
|
843
|
+
}
|
|
844
|
+
]
|
|
845
|
+
},
|
|
846
|
+
{
|
|
847
|
+
"type": "library",
|
|
848
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.19",
|
|
849
|
+
"author": "David Tolnay <dtolnay@gmail.com>",
|
|
850
|
+
"name": "thiserror",
|
|
851
|
+
"version": "2.0.19",
|
|
852
|
+
"description": "derive(Error)",
|
|
853
|
+
"scope": "required",
|
|
854
|
+
"hashes": [
|
|
855
|
+
{
|
|
856
|
+
"alg": "SHA-256",
|
|
857
|
+
"content": "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9"
|
|
858
|
+
}
|
|
859
|
+
],
|
|
860
|
+
"licenses": [
|
|
861
|
+
{
|
|
862
|
+
"expression": "MIT OR Apache-2.0"
|
|
863
|
+
}
|
|
864
|
+
],
|
|
865
|
+
"purl": "pkg:cargo/thiserror@2.0.19",
|
|
866
|
+
"externalReferences": [
|
|
867
|
+
{
|
|
868
|
+
"type": "documentation",
|
|
869
|
+
"url": "https://docs.rs/thiserror"
|
|
870
|
+
},
|
|
871
|
+
{
|
|
872
|
+
"type": "vcs",
|
|
873
|
+
"url": "https://github.com/dtolnay/thiserror"
|
|
874
|
+
}
|
|
875
|
+
]
|
|
876
|
+
},
|
|
877
|
+
{
|
|
878
|
+
"type": "library",
|
|
879
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24",
|
|
880
|
+
"author": "David Tolnay <dtolnay@gmail.com>",
|
|
881
|
+
"name": "unicode-ident",
|
|
882
|
+
"version": "1.0.24",
|
|
883
|
+
"description": "Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31",
|
|
884
|
+
"scope": "required",
|
|
885
|
+
"hashes": [
|
|
886
|
+
{
|
|
887
|
+
"alg": "SHA-256",
|
|
888
|
+
"content": "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
889
|
+
}
|
|
890
|
+
],
|
|
891
|
+
"licenses": [
|
|
892
|
+
{
|
|
893
|
+
"expression": "(MIT OR Apache-2.0) AND Unicode-3.0"
|
|
894
|
+
}
|
|
895
|
+
],
|
|
896
|
+
"purl": "pkg:cargo/unicode-ident@1.0.24",
|
|
897
|
+
"externalReferences": [
|
|
898
|
+
{
|
|
899
|
+
"type": "documentation",
|
|
900
|
+
"url": "https://docs.rs/unicode-ident"
|
|
901
|
+
},
|
|
902
|
+
{
|
|
903
|
+
"type": "vcs",
|
|
904
|
+
"url": "https://github.com/dtolnay/unicode-ident"
|
|
905
|
+
}
|
|
906
|
+
]
|
|
907
|
+
},
|
|
908
|
+
{
|
|
909
|
+
"type": "library",
|
|
910
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#unsafe-libyaml-norway@0.2.15",
|
|
911
|
+
"author": "Christina Sørensen <christina@cafkafk.com>, David Tolnay <dtolnay@gmail.com>",
|
|
912
|
+
"name": "unsafe-libyaml-norway",
|
|
913
|
+
"version": "0.2.15",
|
|
914
|
+
"description": "libyaml transpiled to rust by c2rust",
|
|
915
|
+
"scope": "required",
|
|
916
|
+
"hashes": [
|
|
917
|
+
{
|
|
918
|
+
"alg": "SHA-256",
|
|
919
|
+
"content": "b39abd59bf32521c7f2301b52d05a6a2c975b6003521cbd0c6dc1582f0a22104"
|
|
920
|
+
}
|
|
921
|
+
],
|
|
922
|
+
"licenses": [
|
|
923
|
+
{
|
|
924
|
+
"expression": "MIT"
|
|
925
|
+
}
|
|
926
|
+
],
|
|
927
|
+
"purl": "pkg:cargo/unsafe-libyaml-norway@0.2.15",
|
|
928
|
+
"externalReferences": [
|
|
929
|
+
{
|
|
930
|
+
"type": "documentation",
|
|
931
|
+
"url": "https://docs.rs/unsafe-libyaml-norway"
|
|
932
|
+
},
|
|
933
|
+
{
|
|
934
|
+
"type": "vcs",
|
|
935
|
+
"url": "https://github.com/cafkafk/unsafe-libyaml-norway"
|
|
936
|
+
}
|
|
937
|
+
]
|
|
938
|
+
},
|
|
939
|
+
{
|
|
940
|
+
"type": "library",
|
|
941
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2",
|
|
942
|
+
"author": "Joe Wilm <joe@jwilm.com>, Christian Duerr <contact@christianduerr.com>",
|
|
943
|
+
"name": "utf8parse",
|
|
944
|
+
"version": "0.2.2",
|
|
945
|
+
"description": "Table-driven UTF-8 parser",
|
|
946
|
+
"scope": "required",
|
|
947
|
+
"hashes": [
|
|
948
|
+
{
|
|
949
|
+
"alg": "SHA-256",
|
|
950
|
+
"content": "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
951
|
+
}
|
|
952
|
+
],
|
|
953
|
+
"licenses": [
|
|
954
|
+
{
|
|
955
|
+
"expression": "Apache-2.0 OR MIT"
|
|
956
|
+
}
|
|
957
|
+
],
|
|
958
|
+
"purl": "pkg:cargo/utf8parse@0.2.2",
|
|
959
|
+
"externalReferences": [
|
|
960
|
+
{
|
|
961
|
+
"type": "documentation",
|
|
962
|
+
"url": "https://docs.rs/utf8parse/"
|
|
963
|
+
},
|
|
964
|
+
{
|
|
965
|
+
"type": "vcs",
|
|
966
|
+
"url": "https://github.com/alacritty/vte"
|
|
967
|
+
}
|
|
968
|
+
]
|
|
969
|
+
},
|
|
970
|
+
{
|
|
971
|
+
"type": "library",
|
|
972
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zmij@1.0.23",
|
|
973
|
+
"author": "David Tolnay <dtolnay@gmail.com>",
|
|
974
|
+
"name": "zmij",
|
|
975
|
+
"version": "1.0.23",
|
|
976
|
+
"description": "A double-to-string conversion algorithm based on Schubfach and xjb",
|
|
977
|
+
"scope": "required",
|
|
978
|
+
"hashes": [
|
|
979
|
+
{
|
|
980
|
+
"alg": "SHA-256",
|
|
981
|
+
"content": "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
|
|
982
|
+
}
|
|
983
|
+
],
|
|
984
|
+
"licenses": [
|
|
985
|
+
{
|
|
986
|
+
"expression": "MIT"
|
|
987
|
+
}
|
|
988
|
+
],
|
|
989
|
+
"purl": "pkg:cargo/zmij@1.0.23",
|
|
990
|
+
"externalReferences": [
|
|
991
|
+
{
|
|
992
|
+
"type": "documentation",
|
|
993
|
+
"url": "https://docs.rs/zmij"
|
|
994
|
+
},
|
|
995
|
+
{
|
|
996
|
+
"type": "vcs",
|
|
997
|
+
"url": "https://github.com/dtolnay/zmij"
|
|
998
|
+
}
|
|
999
|
+
]
|
|
1000
|
+
}
|
|
1001
|
+
],
|
|
1002
|
+
"dependencies": [
|
|
1003
|
+
{
|
|
1004
|
+
"ref": "path+file:///Users/runner/work/oneagentgraph/oneagentgraph#0.1.0",
|
|
1005
|
+
"dependsOn": [
|
|
1006
|
+
"registry+https://github.com/rust-lang/crates.io-index#clap@4.6.6",
|
|
1007
|
+
"registry+https://github.com/rust-lang/crates.io-index#serde@1.0.229",
|
|
1008
|
+
"registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.151",
|
|
1009
|
+
"registry+https://github.com/rust-lang/crates.io-index#serde_norway@0.9.42",
|
|
1010
|
+
"registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.19"
|
|
1011
|
+
]
|
|
1012
|
+
},
|
|
1013
|
+
{
|
|
1014
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#anstream@1.0.0",
|
|
1015
|
+
"dependsOn": [
|
|
1016
|
+
"registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.14",
|
|
1017
|
+
"registry+https://github.com/rust-lang/crates.io-index#anstyle-parse@1.0.0",
|
|
1018
|
+
"registry+https://github.com/rust-lang/crates.io-index#anstyle-query@1.1.5",
|
|
1019
|
+
"registry+https://github.com/rust-lang/crates.io-index#colorchoice@1.0.5",
|
|
1020
|
+
"registry+https://github.com/rust-lang/crates.io-index#is_terminal_polyfill@1.70.2",
|
|
1021
|
+
"registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2"
|
|
1022
|
+
]
|
|
1023
|
+
},
|
|
1024
|
+
{
|
|
1025
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#anstyle-parse@1.0.0",
|
|
1026
|
+
"dependsOn": [
|
|
1027
|
+
"registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2"
|
|
1028
|
+
]
|
|
1029
|
+
},
|
|
1030
|
+
{
|
|
1031
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#anstyle-query@1.1.5"
|
|
1032
|
+
},
|
|
1033
|
+
{
|
|
1034
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.14"
|
|
1035
|
+
},
|
|
1036
|
+
{
|
|
1037
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#clap@4.6.6",
|
|
1038
|
+
"dependsOn": [
|
|
1039
|
+
"registry+https://github.com/rust-lang/crates.io-index#clap_builder@4.6.6",
|
|
1040
|
+
"registry+https://github.com/rust-lang/crates.io-index#clap_derive@4.6.4"
|
|
1041
|
+
]
|
|
1042
|
+
},
|
|
1043
|
+
{
|
|
1044
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#clap_builder@4.6.6",
|
|
1045
|
+
"dependsOn": [
|
|
1046
|
+
"registry+https://github.com/rust-lang/crates.io-index#anstream@1.0.0",
|
|
1047
|
+
"registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.14",
|
|
1048
|
+
"registry+https://github.com/rust-lang/crates.io-index#clap_lex@1.1.0",
|
|
1049
|
+
"registry+https://github.com/rust-lang/crates.io-index#strsim@0.11.1"
|
|
1050
|
+
]
|
|
1051
|
+
},
|
|
1052
|
+
{
|
|
1053
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#clap_derive@4.6.4",
|
|
1054
|
+
"dependsOn": [
|
|
1055
|
+
"registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0",
|
|
1056
|
+
"registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.107",
|
|
1057
|
+
"registry+https://github.com/rust-lang/crates.io-index#quote@1.0.47",
|
|
1058
|
+
"registry+https://github.com/rust-lang/crates.io-index#syn@3.0.3"
|
|
1059
|
+
]
|
|
1060
|
+
},
|
|
1061
|
+
{
|
|
1062
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#clap_lex@1.1.0"
|
|
1063
|
+
},
|
|
1064
|
+
{
|
|
1065
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#colorchoice@1.0.5"
|
|
1066
|
+
},
|
|
1067
|
+
{
|
|
1068
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2"
|
|
1069
|
+
},
|
|
1070
|
+
{
|
|
1071
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.17.1"
|
|
1072
|
+
},
|
|
1073
|
+
{
|
|
1074
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0"
|
|
1075
|
+
},
|
|
1076
|
+
{
|
|
1077
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.14.0",
|
|
1078
|
+
"dependsOn": [
|
|
1079
|
+
"registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2",
|
|
1080
|
+
"registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.17.1"
|
|
1081
|
+
]
|
|
1082
|
+
},
|
|
1083
|
+
{
|
|
1084
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#is_terminal_polyfill@1.70.2"
|
|
1085
|
+
},
|
|
1086
|
+
{
|
|
1087
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.18"
|
|
1088
|
+
},
|
|
1089
|
+
{
|
|
1090
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.8.3"
|
|
1091
|
+
},
|
|
1092
|
+
{
|
|
1093
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.107",
|
|
1094
|
+
"dependsOn": [
|
|
1095
|
+
"registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24"
|
|
1096
|
+
]
|
|
1097
|
+
},
|
|
1098
|
+
{
|
|
1099
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.47",
|
|
1100
|
+
"dependsOn": [
|
|
1101
|
+
"registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.107"
|
|
1102
|
+
]
|
|
1103
|
+
},
|
|
1104
|
+
{
|
|
1105
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.23"
|
|
1106
|
+
},
|
|
1107
|
+
{
|
|
1108
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.229",
|
|
1109
|
+
"dependsOn": [
|
|
1110
|
+
"registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.229",
|
|
1111
|
+
"registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.229"
|
|
1112
|
+
]
|
|
1113
|
+
},
|
|
1114
|
+
{
|
|
1115
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.229"
|
|
1116
|
+
},
|
|
1117
|
+
{
|
|
1118
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.229",
|
|
1119
|
+
"dependsOn": [
|
|
1120
|
+
"registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.107",
|
|
1121
|
+
"registry+https://github.com/rust-lang/crates.io-index#quote@1.0.47",
|
|
1122
|
+
"registry+https://github.com/rust-lang/crates.io-index#syn@3.0.3"
|
|
1123
|
+
]
|
|
1124
|
+
},
|
|
1125
|
+
{
|
|
1126
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.151",
|
|
1127
|
+
"dependsOn": [
|
|
1128
|
+
"registry+https://github.com/rust-lang/crates.io-index#indexmap@2.14.0",
|
|
1129
|
+
"registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.18",
|
|
1130
|
+
"registry+https://github.com/rust-lang/crates.io-index#memchr@2.8.3",
|
|
1131
|
+
"registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.229",
|
|
1132
|
+
"registry+https://github.com/rust-lang/crates.io-index#zmij@1.0.23"
|
|
1133
|
+
]
|
|
1134
|
+
},
|
|
1135
|
+
{
|
|
1136
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#serde_norway@0.9.42",
|
|
1137
|
+
"dependsOn": [
|
|
1138
|
+
"registry+https://github.com/rust-lang/crates.io-index#indexmap@2.14.0",
|
|
1139
|
+
"registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.18",
|
|
1140
|
+
"registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.23",
|
|
1141
|
+
"registry+https://github.com/rust-lang/crates.io-index#serde@1.0.229",
|
|
1142
|
+
"registry+https://github.com/rust-lang/crates.io-index#unsafe-libyaml-norway@0.2.15"
|
|
1143
|
+
]
|
|
1144
|
+
},
|
|
1145
|
+
{
|
|
1146
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#strsim@0.11.1"
|
|
1147
|
+
},
|
|
1148
|
+
{
|
|
1149
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#syn@3.0.3",
|
|
1150
|
+
"dependsOn": [
|
|
1151
|
+
"registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.107",
|
|
1152
|
+
"registry+https://github.com/rust-lang/crates.io-index#quote@1.0.47",
|
|
1153
|
+
"registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24"
|
|
1154
|
+
]
|
|
1155
|
+
},
|
|
1156
|
+
{
|
|
1157
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.19",
|
|
1158
|
+
"dependsOn": [
|
|
1159
|
+
"registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.107",
|
|
1160
|
+
"registry+https://github.com/rust-lang/crates.io-index#quote@1.0.47",
|
|
1161
|
+
"registry+https://github.com/rust-lang/crates.io-index#syn@3.0.3"
|
|
1162
|
+
]
|
|
1163
|
+
},
|
|
1164
|
+
{
|
|
1165
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.19",
|
|
1166
|
+
"dependsOn": [
|
|
1167
|
+
"registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.19"
|
|
1168
|
+
]
|
|
1169
|
+
},
|
|
1170
|
+
{
|
|
1171
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24"
|
|
1172
|
+
},
|
|
1173
|
+
{
|
|
1174
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#unsafe-libyaml-norway@0.2.15"
|
|
1175
|
+
},
|
|
1176
|
+
{
|
|
1177
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2"
|
|
1178
|
+
},
|
|
1179
|
+
{
|
|
1180
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#zmij@1.0.23"
|
|
1181
|
+
}
|
|
1182
|
+
]
|
|
1183
|
+
}
|