@nestia/core 12.0.0-rc.2 → 12.0.0-rc.4
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.
- package/LICENSE +21 -21
- package/MIGRATION.md +138 -169
- package/lib/decorators/NoTransformConfigurationError.js +5 -5
- package/lib/decorators/NoTransformConfigurationError.js.map +1 -1
- package/native/cmd/ttsc-nestia/main.go +11 -11
- package/native/go.mod +32 -32
- package/native/go.sum +54 -54
- package/native/plugin/plan.go +102 -102
- package/native/transform/ast.go +32 -32
- package/native/transform/build.go +388 -380
- package/native/transform/cleanup.go +408 -408
- package/native/transform/contributor.go +97 -97
- package/native/transform/core_querify.go +231 -231
- package/native/transform/core_transform.go +1996 -1996
- package/native/transform/core_websocket.go +115 -115
- package/native/transform/exports.go +13 -13
- package/native/transform/mcp_transform.go +414 -414
- package/native/transform/node_transform.go +357 -357
- package/native/transform/path_rewrite.go +285 -285
- package/native/transform/printer.go +244 -244
- package/native/transform/rewrite.go +668 -668
- package/native/transform/run.go +73 -73
- package/native/transform/transform.go +336 -336
- package/native/transform/typia_fast.go +375 -352
- package/native/transform/typia_replacement.go +24 -24
- package/native/transform.cjs +43 -43
- package/package.json +9 -9
- package/src/adaptors/McpAdaptor.ts +276 -276
- package/src/adaptors/WebSocketAdaptor.ts +429 -429
- package/src/decorators/DynamicModule.ts +44 -44
- package/src/decorators/EncryptedBody.ts +97 -97
- package/src/decorators/EncryptedController.ts +40 -40
- package/src/decorators/EncryptedModule.ts +98 -98
- package/src/decorators/EncryptedRoute.ts +213 -213
- package/src/decorators/HumanRoute.ts +21 -21
- package/src/decorators/McpRoute.ts +154 -154
- package/src/decorators/NoTransformConfigurationError.ts +40 -40
- package/src/decorators/PlainBody.ts +76 -76
- package/src/decorators/SwaggerCustomizer.ts +97 -97
- package/src/decorators/SwaggerExample.ts +180 -180
- package/src/decorators/TypedBody.ts +57 -57
- package/src/decorators/TypedException.ts +147 -147
- package/src/decorators/TypedFormData.ts +187 -187
- package/src/decorators/TypedHeaders.ts +66 -66
- package/src/decorators/TypedParam.ts +77 -77
- package/src/decorators/TypedQuery.ts +234 -234
- package/src/decorators/TypedRoute.ts +198 -198
- package/src/decorators/WebSocketRoute.ts +242 -242
- package/src/decorators/doNotThrowTransformError.ts +5 -5
- package/src/decorators/internal/EncryptedConstant.ts +2 -2
- package/src/decorators/internal/IMcpRouteReflect.ts +40 -40
- package/src/decorators/internal/IWebSocketRouteReflect.ts +23 -23
- package/src/decorators/internal/get_path_and_querify.ts +94 -94
- package/src/decorators/internal/get_path_and_stringify.ts +110 -110
- package/src/decorators/internal/get_text_body.ts +16 -16
- package/src/decorators/internal/headers_to_object.ts +11 -11
- package/src/decorators/internal/is_request_body_undefined.ts +12 -12
- package/src/decorators/internal/load_controller.ts +94 -94
- package/src/decorators/internal/route_error.ts +43 -43
- package/src/decorators/internal/validate_request_body.ts +64 -64
- package/src/decorators/internal/validate_request_form_data.ts +67 -67
- package/src/decorators/internal/validate_request_headers.ts +76 -76
- package/src/decorators/internal/validate_request_query.ts +83 -83
- package/src/index.ts +5 -5
- package/src/module.ts +25 -25
- package/src/options/IRequestBodyValidator.ts +20 -20
- package/src/options/IRequestFormDataProps.ts +27 -27
- package/src/options/IRequestHeadersValidator.ts +22 -22
- package/src/options/IRequestQueryValidator.ts +20 -20
- package/src/options/IResponseBodyQuerifier.ts +25 -25
- package/src/options/IResponseBodyStringifier.ts +30 -30
- package/src/transform.ts +26 -26
- package/src/typings/Creator.ts +3 -3
- package/src/typings/get-function-location.d.ts +7 -7
- package/src/utils/ArrayUtil.ts +7 -7
- package/src/utils/ExceptionManager.ts +115 -115
- package/src/utils/Singleton.ts +16 -16
- package/src/utils/SourceFinder.ts +54 -54
- package/src/utils/VersioningStrategy.ts +27 -27
- package/README.md +0 -93
package/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2022 Jeongho Nam
|
|
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.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2022 Jeongho Nam
|
|
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.
|
package/MIGRATION.md
CHANGED
|
@@ -1,169 +1,138 @@
|
|
|
1
|
-
# Migration:
|
|
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
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
```bash
|
|
134
|
-
TTSC_NESTIA_PROFILE=1 ttsc
|
|
135
|
-
```
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
ttsc-nestia profile: sdk-cache hits=567 misses=89
|
|
140
|
-
```
|
|
141
|
-
|
|
142
|
-
Informational only — the counters do not affect compilation output or exit code. Useful when investigating large-codebase build times.
|
|
143
|
-
|
|
144
|
-
### 12. Panic stack opt-in: `NESTIA_NATIVE_DEBUG_STACK`
|
|
145
|
-
|
|
146
|
-
If the Go binary aborts with `nestia.internal.panic`, set `NESTIA_NATIVE_DEBUG_STACK=1` to also print the full Go stack alongside the diagnostic. Off by default to keep build output clean; turn it on only when reproducing a panic for triage.
|
|
147
|
-
|
|
148
|
-
## Quickest upgrade recipe
|
|
149
|
-
|
|
150
|
-
```bash
|
|
151
|
-
# 1. Drop the old patch chain
|
|
152
|
-
npm uninstall ts-patch
|
|
153
|
-
|
|
154
|
-
# 2. Reinstall dependencies in the new order. The runtime set matches what
|
|
155
|
-
# `npx nestia setup` installs, plus `@nestia/e2e` for projects that emit
|
|
156
|
-
# the generated e2e bundle (`npx nestia dependencies` adds it separately).
|
|
157
|
-
npm i -D ttsc @typescript/native-preview
|
|
158
|
-
npm i typia
|
|
159
|
-
npm i @nestia/core @nestia/sdk @nestia/e2e @nestia/fetcher
|
|
160
|
-
npm i -D nestia
|
|
161
|
-
|
|
162
|
-
# 3. Update the build script (see §2)
|
|
163
|
-
# Optional: if you registered plugins manually, update the entries (§6)
|
|
164
|
-
|
|
165
|
-
# 4. Build
|
|
166
|
-
npm run build
|
|
167
|
-
```
|
|
168
|
-
|
|
169
|
-
If `ttsc` exits with `failed to compile`, run `npx ttsc -p tsconfig.json` directly to see the underlying `ttsc-nestia: ...` stderr diagnostic (this is the same output the SDK and CLI consume).
|
|
1
|
+
# Migration: TypeScript 7 and ttsc
|
|
2
|
+
|
|
3
|
+
Nestia's `@next` transform runs through `ttsc` on TypeScript 7. Public
|
|
4
|
+
decorator APIs stay the same; the migration is about packages, build commands,
|
|
5
|
+
and optional transform configuration.
|
|
6
|
+
|
|
7
|
+
## What stayed the same
|
|
8
|
+
|
|
9
|
+
- All `@TypedBody`, `@TypedRoute`, `@TypedQuery`, `@TypedHeaders`,
|
|
10
|
+
`@TypedParam`, `@TypedException`, `@TypedFormData`, `@PlainBody`,
|
|
11
|
+
`@HumanRoute`, `@EncryptedBody`, `@EncryptedRoute`,
|
|
12
|
+
`@EncryptedController`, `@EncryptedModule`, `@SwaggerCustomizer`,
|
|
13
|
+
`@SwaggerExample`, `@WebSocketRoute`, `WebSocketAdaptor`, `DynamicModule`,
|
|
14
|
+
`ExceptionManager`, and `doNotThrowTransformError` signatures.
|
|
15
|
+
- All `IRequest*Validator`, `IResponse*Querifier`, and
|
|
16
|
+
`IResponse*Stringifier` runtime option interfaces.
|
|
17
|
+
- `INestiaConfig`, `nestia.config.ts` lookup, and generator commands such as
|
|
18
|
+
`init`, `sdk`, `swagger`, `e2e`, and `all`.
|
|
19
|
+
|
|
20
|
+
## Install
|
|
21
|
+
|
|
22
|
+
Install `ttsc` and TypeScript 7 as dev dependencies. Keep `typia`,
|
|
23
|
+
`@nestia/core`, `@nestia/sdk`, and `@nestia/fetcher` as runtime dependencies.
|
|
24
|
+
Add `@nestia/e2e` when the project emits generated e2e suites.
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
npm i -D ttsc typescript
|
|
28
|
+
npm i typia @nestia/core @nestia/sdk @nestia/fetcher
|
|
29
|
+
npm i @nestia/e2e
|
|
30
|
+
npm i -D nestia
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
`@nestia/sdk` is a runtime dependency because the transform resolves it while
|
|
34
|
+
attaching SDK, Swagger, and e2e metadata. Runtime Swagger composition through
|
|
35
|
+
`NestiaSwaggerComposer` also needs it.
|
|
36
|
+
|
|
37
|
+
## Build
|
|
38
|
+
|
|
39
|
+
Use `ttsc` for compiled builds and `ttsx` for direct TypeScript execution.
|
|
40
|
+
Stock `tsc`, `ts-node`, `tsx`, and `nest build` do not run the Nestia
|
|
41
|
+
transform.
|
|
42
|
+
|
|
43
|
+
```diff
|
|
44
|
+
{
|
|
45
|
+
"scripts": {
|
|
46
|
+
- "build": "tsc",
|
|
47
|
+
+ "build": "ttsc",
|
|
48
|
+
"start": "node dist/main.js"
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
If the project has a `tsconfig.build.json`, point the build script at it:
|
|
54
|
+
|
|
55
|
+
```json
|
|
56
|
+
{
|
|
57
|
+
"scripts": {
|
|
58
|
+
"build": "ttsc -p tsconfig.build.json"
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
## Transform configuration
|
|
64
|
+
|
|
65
|
+
Do not add `compilerOptions.plugins` for the default Nestia setup. `ttsc`
|
|
66
|
+
discovers the `@nestia/core`, `@nestia/sdk`, and `typia` transforms from the
|
|
67
|
+
installed package manifests.
|
|
68
|
+
|
|
69
|
+
No plugin config means these defaults apply:
|
|
70
|
+
|
|
71
|
+
- `@TypedBody` uses `"validate"`.
|
|
72
|
+
- `@TypedRoute` uses `"assert"`.
|
|
73
|
+
- LLM schema restrictions are off.
|
|
74
|
+
|
|
75
|
+
Add `compilerOptions.plugins` only when you want to override those options:
|
|
76
|
+
|
|
77
|
+
```jsonc
|
|
78
|
+
{
|
|
79
|
+
"compilerOptions": {
|
|
80
|
+
"plugins": [
|
|
81
|
+
{ "transform": "typia/lib/transform", "enabled": false },
|
|
82
|
+
{
|
|
83
|
+
"transform": "@nestia/core/native/transform.cjs",
|
|
84
|
+
"validate": "validatePrune",
|
|
85
|
+
"stringify": "validate.log",
|
|
86
|
+
"llm": { "strict": true }
|
|
87
|
+
}
|
|
88
|
+
]
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
The `typia` entry is a host tombstone for tools that inspect plugin arrays.
|
|
94
|
+
The actual typia transform is composed by the native Nestia binary.
|
|
95
|
+
|
|
96
|
+
## CLI setup flow
|
|
97
|
+
|
|
98
|
+
The CLI no longer provides an interactive setup command. Install packages and
|
|
99
|
+
edit scripts directly; use `npx nestia init` only when you want a starter
|
|
100
|
+
`nestia.config.ts`.
|
|
101
|
+
|
|
102
|
+
## Internal symbols removed
|
|
103
|
+
|
|
104
|
+
`INestiaTransformOptions`, `INestiaTransformProject`, `PlainBodyProgrammer`,
|
|
105
|
+
`TypedBodyProgrammer`, and the old `programmers/` and `transformers/`
|
|
106
|
+
directories were internal implementation details. If third-party code imported
|
|
107
|
+
them through deep paths, move that code to the native transform pipeline or to
|
|
108
|
+
`@ttsc/factory`.
|
|
109
|
+
|
|
110
|
+
## AST factory
|
|
111
|
+
|
|
112
|
+
`@nestia/sdk` and `@nestia/migrate` build TypeScript source through
|
|
113
|
+
[`@ttsc/factory`](https://www.npmjs.com/package/@ttsc/factory), a
|
|
114
|
+
dependency-free, printer-compatible AST factory and printer. Third-party code
|
|
115
|
+
generators that previously reached into `@nestia/core` internals should depend
|
|
116
|
+
on `@ttsc/factory` directly.
|
|
117
|
+
|
|
118
|
+
## Native binary requirement
|
|
119
|
+
|
|
120
|
+
Until prebuilt binaries are distributed through optional npm dependencies, the
|
|
121
|
+
local toolchain must have Go available on `PATH`. For deterministic CI builds,
|
|
122
|
+
use the Go version declared by `packages/core/native/go.mod`.
|
|
123
|
+
|
|
124
|
+
## Diagnostics
|
|
125
|
+
|
|
126
|
+
Compilation failures surface through `ttsc-nestia: ...` stderr. If a generated
|
|
127
|
+
runtime path throws `NoTransformConfigurationError`, confirm the project was
|
|
128
|
+
compiled by `ttsc` or a bundler wired through `@ttsc/unplugin`.
|
|
129
|
+
|
|
130
|
+
Set `TTSC_NESTIA_PROFILE=1` before running `ttsc` to print transform cache
|
|
131
|
+
counters:
|
|
132
|
+
|
|
133
|
+
```bash
|
|
134
|
+
TTSC_NESTIA_PROFILE=1 ttsc
|
|
135
|
+
```
|
|
136
|
+
|
|
137
|
+
Set `NESTIA_NATIVE_DEBUG_STACK=1` when reproducing a native panic and you need
|
|
138
|
+
the Go stack trace in the diagnostic output.
|
|
@@ -7,10 +7,10 @@ function NoTransformConfigurationError(method) {
|
|
|
7
7
|
throw new Error([
|
|
8
8
|
`Error on nestia.core.${method}(): no transform has been configured.`,
|
|
9
9
|
`Build the project with "ttsc" (not stock "tsc"); the Go-backed @nestia/core transform attaches automatically through ttsc plugin auto-discovery.`,
|
|
10
|
-
`If "ttsc" is missing,
|
|
10
|
+
`If "ttsc" is missing, install the toolchain manually: npm i -D ttsc typescript.`,
|
|
11
11
|
`If you're using a non-standard TypeScript compiler like Babel or SWC, the @nestia/core transformer is not available.`,
|
|
12
12
|
`If you're running "npx nestia sdk/swagger" or similar, run "npx ttsc --noEmit" to surface the underlying compilation error.`,
|
|
13
|
-
`See https://nestia.io/docs/setup for the full setup
|
|
13
|
+
`See https://nestia.io/docs/setup for the full setup; migration notes are at node_modules/@nestia/core/MIGRATION.md.`,
|
|
14
14
|
].join(" "));
|
|
15
15
|
return undefined;
|
|
16
16
|
}
|
|
@@ -22,9 +22,9 @@ function NoTransformConfigurationError(method) {
|
|
|
22
22
|
* If you set this value to `false`, {@link NoTransformConfigurationError} will
|
|
23
23
|
* not throw an error.
|
|
24
24
|
*
|
|
25
|
-
* Even if
|
|
26
|
-
*
|
|
27
|
-
*
|
|
25
|
+
* Even if the transform did not run, the error will not be thrown and the
|
|
26
|
+
* program will be continued. Instead, every validation and assertion will be
|
|
27
|
+
* skipped and the value
|
|
28
28
|
* will be returned as it is. Furthermore, unexpected behaviors may occur.
|
|
29
29
|
*
|
|
30
30
|
* Therefore, it is not recommended to set this value to `false` in production
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NoTransformConfigurationError.js","sourceRoot":"","sources":["../../src/decorators/NoTransformConfigurationError.ts"],"names":[],"mappings":";;;AAAA,gBAAgB;AAChB,uCAA8C,MAAc;IAC1D,IAAI,6BAA6B,CAAC,MAAM,KAAK,IAAI;QAC/C,MAAM,IAAI,KAAK,CACb;YACE,wBAAwB,MAAM,uCAAuC;YACrE,kJAAkJ;YAClJ,
|
|
1
|
+
{"version":3,"file":"NoTransformConfigurationError.js","sourceRoot":"","sources":["../../src/decorators/NoTransformConfigurationError.ts"],"names":[],"mappings":";;;AAAA,gBAAgB;AAChB,uCAA8C,MAAc;IAC1D,IAAI,6BAA6B,CAAC,MAAM,KAAK,IAAI;QAC/C,MAAM,IAAI,KAAK,CACb;YACE,wBAAwB,MAAM,uCAAuC;YACrE,kJAAkJ;YAClJ,iFAAiF;YACjF,sHAAsH;YACtH,6HAA6H;YAC7H,qHAAqH;SACtH,CAAC,IAAI,CAAC,GAAG,CAAC,CACZ,CAAC;IACJ,OAAO,SAAkB,CAAC;AAC5B,CAAC;AAED,gBAAgB;AAChB,WAAiB,6BAA6B;IAC5C;;;;;;;;;;;;;;;;;;;OAmBG;IACQ,oCAAM,GAAG,IAAI,CAAC;AAC3B,CAAC,EAtBgB,6BAA6B,aAhB9B,6BAA6B,GAgB5B,6BAA6B,QAsB7C"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
package main
|
|
2
|
-
|
|
3
|
-
import (
|
|
4
|
-
"os"
|
|
5
|
-
|
|
6
|
-
"github.com/samchon/nestia/packages/core/native/transform"
|
|
7
|
-
)
|
|
8
|
-
|
|
9
|
-
func main() {
|
|
10
|
-
os.Exit(transform.Run(os.Args[1:]))
|
|
11
|
-
}
|
|
1
|
+
package main
|
|
2
|
+
|
|
3
|
+
import (
|
|
4
|
+
"os"
|
|
5
|
+
|
|
6
|
+
"github.com/samchon/nestia/packages/core/native/transform"
|
|
7
|
+
)
|
|
8
|
+
|
|
9
|
+
func main() {
|
|
10
|
+
os.Exit(transform.Run(os.Args[1:]))
|
|
11
|
+
}
|
package/native/go.mod
CHANGED
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
module github.com/samchon/nestia/packages/core/native
|
|
2
|
-
|
|
3
|
-
go 1.26
|
|
4
|
-
|
|
5
|
-
require (
|
|
6
|
-
github.com/microsoft/typescript-go/shim/ast v0.0.0
|
|
7
|
-
github.com/microsoft/typescript-go/shim/checker v0.0.0
|
|
8
|
-
github.com/microsoft/typescript-go/shim/compiler v0.0.0
|
|
9
|
-
github.com/microsoft/typescript-go/shim/
|
|
10
|
-
github.com/microsoft/typescript-go/shim/
|
|
11
|
-
github.com/
|
|
12
|
-
github.com/samchon/
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
github.com/
|
|
18
|
-
github.com/
|
|
19
|
-
github.com/microsoft/typescript-go
|
|
20
|
-
github.com/microsoft/typescript-go/shim/
|
|
21
|
-
github.com/microsoft/typescript-go/shim/diagnosticwriter v0.0.0 // indirect
|
|
22
|
-
github.com/microsoft/typescript-go/shim/parser v0.0.0 // indirect
|
|
23
|
-
github.com/microsoft/typescript-go/shim/tsoptions v0.0.0 // indirect
|
|
24
|
-
github.com/microsoft/typescript-go/shim/tspath v0.0.0 // indirect
|
|
25
|
-
github.com/microsoft/typescript-go/shim/vfs v0.0.0 // indirect
|
|
26
|
-
github.com/microsoft/typescript-go/shim/vfs/cachedvfs v0.0.0 // indirect
|
|
27
|
-
github.com/microsoft/typescript-go/shim/vfs/osvfs v0.0.0 // indirect
|
|
28
|
-
github.com/zeebo/xxh3 v1.1.0 // indirect
|
|
29
|
-
golang.org/x/sync v0.20.0 // indirect
|
|
30
|
-
golang.org/x/sys v0.43.0 // indirect
|
|
31
|
-
golang.org/x/text v0.36.0 // indirect
|
|
32
|
-
)
|
|
1
|
+
module github.com/samchon/nestia/packages/core/native
|
|
2
|
+
|
|
3
|
+
go 1.26
|
|
4
|
+
|
|
5
|
+
require (
|
|
6
|
+
github.com/microsoft/typescript-go/shim/ast v0.0.0
|
|
7
|
+
github.com/microsoft/typescript-go/shim/checker v0.0.0
|
|
8
|
+
github.com/microsoft/typescript-go/shim/compiler v0.0.0
|
|
9
|
+
github.com/microsoft/typescript-go/shim/core v0.0.0
|
|
10
|
+
github.com/microsoft/typescript-go/shim/printer v0.0.0
|
|
11
|
+
github.com/microsoft/typescript-go/shim/scanner v0.0.0
|
|
12
|
+
github.com/samchon/ttsc/packages/ttsc v0.0.0
|
|
13
|
+
github.com/samchon/typia/packages/typia/native v0.0.0-20260709134626-fd1c6686950f
|
|
14
|
+
)
|
|
15
|
+
|
|
16
|
+
require (
|
|
17
|
+
github.com/go-json-experiment/json v0.0.0-20260214004413-d219187c3433 // indirect
|
|
18
|
+
github.com/klauspost/cpuid/v2 v2.2.10 // indirect
|
|
19
|
+
github.com/microsoft/typescript-go v0.0.0-20260429010842-56ab4af42157 // indirect
|
|
20
|
+
github.com/microsoft/typescript-go/shim/bundled v0.0.0 // indirect
|
|
21
|
+
github.com/microsoft/typescript-go/shim/diagnosticwriter v0.0.0 // indirect
|
|
22
|
+
github.com/microsoft/typescript-go/shim/parser v0.0.0 // indirect
|
|
23
|
+
github.com/microsoft/typescript-go/shim/tsoptions v0.0.0 // indirect
|
|
24
|
+
github.com/microsoft/typescript-go/shim/tspath v0.0.0 // indirect
|
|
25
|
+
github.com/microsoft/typescript-go/shim/vfs v0.0.0 // indirect
|
|
26
|
+
github.com/microsoft/typescript-go/shim/vfs/cachedvfs v0.0.0 // indirect
|
|
27
|
+
github.com/microsoft/typescript-go/shim/vfs/osvfs v0.0.0 // indirect
|
|
28
|
+
github.com/zeebo/xxh3 v1.1.0 // indirect
|
|
29
|
+
golang.org/x/sync v0.20.0 // indirect
|
|
30
|
+
golang.org/x/sys v0.43.0 // indirect
|
|
31
|
+
golang.org/x/text v0.36.0 // indirect
|
|
32
|
+
)
|
package/native/go.sum
CHANGED
|
@@ -1,54 +1,54 @@
|
|
|
1
|
-
github.com/go-json-experiment/json v0.0.0-20260214004413-d219187c3433 h1:vymEbVwYFP/L05h5TKQxvkXoKxNvTpjxYKdF1Nlwuao=
|
|
2
|
-
github.com/go-json-experiment/json v0.0.0-20260214004413-d219187c3433/go.mod h1:tphK2c80bpPhMOI4v6bIc2xWywPfbqi1Z06+RcrMkDg=
|
|
3
|
-
github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
|
|
4
|
-
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
|
|
5
|
-
github.com/klauspost/cpuid/v2 v2.2.10 h1:tBs3QSyvjDyFTq3uoc/9xFpCuOsJQFNPiAhYdw2skhE=
|
|
6
|
-
github.com/klauspost/cpuid/v2 v2.2.10/go.mod h1:hqwkgyIinND0mEev00jJYCxPNVRVXFQeu1XKlok6oO0=
|
|
7
|
-
github.com/microsoft/typescript-go v0.0.0-20260429010842-56ab4af42157 h1:llOMPhKDiQ+UEJiAaQuuWaJOTg5V7tNNTEf9JPWoYSY=
|
|
8
|
-
github.com/microsoft/typescript-go v0.0.0-20260429010842-56ab4af42157/go.mod h1:m8YA0PMC7ti0GW0RI05D6fEcjQeu98XVS+FWF+VDW2k=
|
|
9
|
-
github.com/peter-evans/patience v0.3.0 h1:rX0JdJeepqdQl1Sk9c9uvorjYYzL2TfgLX1adqYm9cA=
|
|
10
|
-
github.com/peter-evans/patience v0.3.0/go.mod h1:Kmxu5sY1NmBLFSStvXjX1wS9mIv7wMcP/ubucyMOAu0=
|
|
11
|
-
github.com/samchon/ttsc/packages/ttsc v0.0.0-
|
|
12
|
-
github.com/samchon/ttsc/packages/ttsc v0.0.0-
|
|
13
|
-
github.com/samchon/ttsc/packages/ttsc/shim/ast v0.0.0-
|
|
14
|
-
github.com/samchon/ttsc/packages/ttsc/shim/ast v0.0.0-
|
|
15
|
-
github.com/samchon/ttsc/packages/ttsc/shim/bundled v0.0.0-
|
|
16
|
-
github.com/samchon/ttsc/packages/ttsc/shim/bundled v0.0.0-
|
|
17
|
-
github.com/samchon/ttsc/packages/ttsc/shim/checker v0.0.0-
|
|
18
|
-
github.com/samchon/ttsc/packages/ttsc/shim/checker v0.0.0-
|
|
19
|
-
github.com/samchon/ttsc/packages/ttsc/shim/compiler v0.0.0-
|
|
20
|
-
github.com/samchon/ttsc/packages/ttsc/shim/compiler v0.0.0-
|
|
21
|
-
github.com/samchon/ttsc/packages/ttsc/shim/core v0.0.0-
|
|
22
|
-
github.com/samchon/ttsc/packages/ttsc/shim/core v0.0.0-
|
|
23
|
-
github.com/samchon/ttsc/packages/ttsc/shim/diagnosticwriter v0.0.0-
|
|
24
|
-
github.com/samchon/ttsc/packages/ttsc/shim/diagnosticwriter v0.0.0-
|
|
25
|
-
github.com/samchon/ttsc/packages/ttsc/shim/parser v0.0.0-
|
|
26
|
-
github.com/samchon/ttsc/packages/ttsc/shim/parser v0.0.0-
|
|
27
|
-
github.com/samchon/ttsc/packages/ttsc/shim/printer v0.0.0-
|
|
28
|
-
github.com/samchon/ttsc/packages/ttsc/shim/printer v0.0.0-
|
|
29
|
-
github.com/samchon/ttsc/packages/ttsc/shim/scanner v0.0.0-
|
|
30
|
-
github.com/samchon/ttsc/packages/ttsc/shim/scanner v0.0.0-
|
|
31
|
-
github.com/samchon/ttsc/packages/ttsc/shim/tsoptions v0.0.0-
|
|
32
|
-
github.com/samchon/ttsc/packages/ttsc/shim/tsoptions v0.0.0-
|
|
33
|
-
github.com/samchon/ttsc/packages/ttsc/shim/tspath v0.0.0-
|
|
34
|
-
github.com/samchon/ttsc/packages/ttsc/shim/tspath v0.0.0-
|
|
35
|
-
github.com/samchon/ttsc/packages/ttsc/shim/vfs v0.0.0-
|
|
36
|
-
github.com/samchon/ttsc/packages/ttsc/shim/vfs v0.0.0-
|
|
37
|
-
github.com/samchon/ttsc/packages/ttsc/shim/vfs/cachedvfs v0.0.0-
|
|
38
|
-
github.com/samchon/ttsc/packages/ttsc/shim/vfs/cachedvfs v0.0.0-
|
|
39
|
-
github.com/samchon/ttsc/packages/ttsc/shim/vfs/osvfs v0.0.0-
|
|
40
|
-
github.com/samchon/ttsc/packages/ttsc/shim/vfs/osvfs v0.0.0-
|
|
41
|
-
github.com/samchon/typia/packages/typia/native v0.0.0-
|
|
42
|
-
github.com/samchon/typia/packages/typia/native v0.0.0-
|
|
43
|
-
github.com/zeebo/assert v1.3.0 h1:g7C04CbJuIDKNPFHmsk4hwZDO5O+kntRxzaUoNXj+IQ=
|
|
44
|
-
github.com/zeebo/assert v1.3.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0=
|
|
45
|
-
github.com/zeebo/xxh3 v1.1.0 h1:s7DLGDK45Dyfg7++yxI0khrfwq9661w9EN78eP/UZVs=
|
|
46
|
-
github.com/zeebo/xxh3 v1.1.0/go.mod h1:IisAie1LELR4xhVinxWS5+zf1lA4p0MW4T+w+W07F5s=
|
|
47
|
-
golang.org/x/sync v0.20.0 h1:e0PTpb7pjO8GAtTs2dQ6jYa5BWYlMuX047Dco/pItO4=
|
|
48
|
-
golang.org/x/sync v0.20.0/go.mod h1:9xrNwdLfx4jkKbNva9FpL6vEN7evnE43NNNJQ2LF3+0=
|
|
49
|
-
golang.org/x/sys v0.43.0 h1:Rlag2XtaFTxp19wS8MXlJwTvoh8ArU6ezoyFsMyCTNI=
|
|
50
|
-
golang.org/x/sys v0.43.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=
|
|
51
|
-
golang.org/x/text v0.36.0 h1:JfKh3XmcRPqZPKevfXVpI1wXPTqbkE5f7JA92a55Yxg=
|
|
52
|
-
golang.org/x/text v0.36.0/go.mod h1:NIdBknypM8iqVmPiuco0Dh6P5Jcdk8lJL0CUebqK164=
|
|
53
|
-
gotest.tools/v3 v3.5.2 h1:7koQfIKdy+I8UTetycgUqXWSDwpgv193Ka+qRsmBY8Q=
|
|
54
|
-
gotest.tools/v3 v3.5.2/go.mod h1:LtdLGcnqToBH83WByAAi/wiwSFCArdFIUV/xxN4pcjA=
|
|
1
|
+
github.com/go-json-experiment/json v0.0.0-20260214004413-d219187c3433 h1:vymEbVwYFP/L05h5TKQxvkXoKxNvTpjxYKdF1Nlwuao=
|
|
2
|
+
github.com/go-json-experiment/json v0.0.0-20260214004413-d219187c3433/go.mod h1:tphK2c80bpPhMOI4v6bIc2xWywPfbqi1Z06+RcrMkDg=
|
|
3
|
+
github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
|
|
4
|
+
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
|
|
5
|
+
github.com/klauspost/cpuid/v2 v2.2.10 h1:tBs3QSyvjDyFTq3uoc/9xFpCuOsJQFNPiAhYdw2skhE=
|
|
6
|
+
github.com/klauspost/cpuid/v2 v2.2.10/go.mod h1:hqwkgyIinND0mEev00jJYCxPNVRVXFQeu1XKlok6oO0=
|
|
7
|
+
github.com/microsoft/typescript-go v0.0.0-20260429010842-56ab4af42157 h1:llOMPhKDiQ+UEJiAaQuuWaJOTg5V7tNNTEf9JPWoYSY=
|
|
8
|
+
github.com/microsoft/typescript-go v0.0.0-20260429010842-56ab4af42157/go.mod h1:m8YA0PMC7ti0GW0RI05D6fEcjQeu98XVS+FWF+VDW2k=
|
|
9
|
+
github.com/peter-evans/patience v0.3.0 h1:rX0JdJeepqdQl1Sk9c9uvorjYYzL2TfgLX1adqYm9cA=
|
|
10
|
+
github.com/peter-evans/patience v0.3.0/go.mod h1:Kmxu5sY1NmBLFSStvXjX1wS9mIv7wMcP/ubucyMOAu0=
|
|
11
|
+
github.com/samchon/ttsc/packages/ttsc v0.0.0-20260709053824-84bdc4acccb0 h1:j6jDYzWEow5+0KacfIzsi8xV9t0MTcShfNHYiPJk2LA=
|
|
12
|
+
github.com/samchon/ttsc/packages/ttsc v0.0.0-20260709053824-84bdc4acccb0/go.mod h1:w1lJWUKJ3tMV+vAG2S8aj4c5E5m+OzA66tLh8a0dlUY=
|
|
13
|
+
github.com/samchon/ttsc/packages/ttsc/shim/ast v0.0.0-20260709053824-84bdc4acccb0 h1:v015/xr8MaQMLoYqPQXu5lUrEQmnG1D3V5zzlDUus6U=
|
|
14
|
+
github.com/samchon/ttsc/packages/ttsc/shim/ast v0.0.0-20260709053824-84bdc4acccb0/go.mod h1:BCVAEArtMC+X1laJmDwxlsRROIQIYvHeT7Dl0gNjT0A=
|
|
15
|
+
github.com/samchon/ttsc/packages/ttsc/shim/bundled v0.0.0-20260709053824-84bdc4acccb0 h1:EEeHe7pRKahBDyoUkBwQ8zFpzSswNj0JEhhrKwFpQTg=
|
|
16
|
+
github.com/samchon/ttsc/packages/ttsc/shim/bundled v0.0.0-20260709053824-84bdc4acccb0/go.mod h1:0tz+Y8szXmEpXWHWVrLrv11ga1z6tQJQErkUyIWJ9RQ=
|
|
17
|
+
github.com/samchon/ttsc/packages/ttsc/shim/checker v0.0.0-20260709053824-84bdc4acccb0 h1:sMwvPvb2gbVJ9JODyPYAmUPObU5YX5XkBihrex9pw7s=
|
|
18
|
+
github.com/samchon/ttsc/packages/ttsc/shim/checker v0.0.0-20260709053824-84bdc4acccb0/go.mod h1:4xfafgG/qosSp8f0tCf83assFoUKRdGHhvPD1EI9LKg=
|
|
19
|
+
github.com/samchon/ttsc/packages/ttsc/shim/compiler v0.0.0-20260709053824-84bdc4acccb0 h1:jmrwyhAcdD56mQSAm96sUZxs2F+5902VnHhNzYTAdhw=
|
|
20
|
+
github.com/samchon/ttsc/packages/ttsc/shim/compiler v0.0.0-20260709053824-84bdc4acccb0/go.mod h1:s12vcy3pf6RYDxXcyiK7448DiK+Ol9qx3cjiInd1uxw=
|
|
21
|
+
github.com/samchon/ttsc/packages/ttsc/shim/core v0.0.0-20260709053824-84bdc4acccb0 h1:Y8wMEDosAZu6lELpWWbJf2IyCZNQZBLQQX+K//8nwc8=
|
|
22
|
+
github.com/samchon/ttsc/packages/ttsc/shim/core v0.0.0-20260709053824-84bdc4acccb0/go.mod h1:DUewcVNEdXyDveQholE4GAsiqqA3C2+SJYqia3nCf00=
|
|
23
|
+
github.com/samchon/ttsc/packages/ttsc/shim/diagnosticwriter v0.0.0-20260709053824-84bdc4acccb0 h1:rpRxTBX5DOVeuzMDojBU0PRfdUZXQ7T/rp+Md0yP2VY=
|
|
24
|
+
github.com/samchon/ttsc/packages/ttsc/shim/diagnosticwriter v0.0.0-20260709053824-84bdc4acccb0/go.mod h1:v86GtrD7qALo6Xkgz1MDomPMSV2D9NdniQWB5t8eY6k=
|
|
25
|
+
github.com/samchon/ttsc/packages/ttsc/shim/parser v0.0.0-20260709053824-84bdc4acccb0 h1:sWGdmZHFtlgdAI3m4LNKZSTCf7jK1+GMs5sJDGSep+M=
|
|
26
|
+
github.com/samchon/ttsc/packages/ttsc/shim/parser v0.0.0-20260709053824-84bdc4acccb0/go.mod h1:inUjC/bNlCkO0zIzHZRXlHR/WgLcK0vi2KLc7tpQ1ek=
|
|
27
|
+
github.com/samchon/ttsc/packages/ttsc/shim/printer v0.0.0-20260709053824-84bdc4acccb0 h1:7cxbkCAQ85dKpeuB0uwkAcQr8akOSDcVRNp6RJCiFYg=
|
|
28
|
+
github.com/samchon/ttsc/packages/ttsc/shim/printer v0.0.0-20260709053824-84bdc4acccb0/go.mod h1:Hz8BbCqKCrykLfIX+PburWsGEKR8+bkrBJDe2TMLLS0=
|
|
29
|
+
github.com/samchon/ttsc/packages/ttsc/shim/scanner v0.0.0-20260709053824-84bdc4acccb0 h1:Ua1uEGKXX/SPrbNPFoS5FAoFrBlM56ecX2s+eeHmbQQ=
|
|
30
|
+
github.com/samchon/ttsc/packages/ttsc/shim/scanner v0.0.0-20260709053824-84bdc4acccb0/go.mod h1:abIC7C28cUA5IQKmLJulsl2qOvmimhkMNOfjJhRm5jM=
|
|
31
|
+
github.com/samchon/ttsc/packages/ttsc/shim/tsoptions v0.0.0-20260709053824-84bdc4acccb0 h1:ySIVZhDxe0u5sb3GtFFQ8leXar69QZjCYgPKGBEkIQA=
|
|
32
|
+
github.com/samchon/ttsc/packages/ttsc/shim/tsoptions v0.0.0-20260709053824-84bdc4acccb0/go.mod h1:EQwrCr3nY0U1SZBNyp6cQSogAiXsjFxTuT8NlMit1lc=
|
|
33
|
+
github.com/samchon/ttsc/packages/ttsc/shim/tspath v0.0.0-20260709053824-84bdc4acccb0 h1:bY1Rdiqs6rc7S7/YbY3gWJoXvTeb7LhXMNYrl6fvp1E=
|
|
34
|
+
github.com/samchon/ttsc/packages/ttsc/shim/tspath v0.0.0-20260709053824-84bdc4acccb0/go.mod h1:hsE2c1bZquSNlDLIkT3SfLH3MrDmMk1BLzWI/KomT1A=
|
|
35
|
+
github.com/samchon/ttsc/packages/ttsc/shim/vfs v0.0.0-20260709053824-84bdc4acccb0 h1:FU0AuiZLsw9kMU4Fy56XvhJ3bD99n5WTkjJh93gB0m0=
|
|
36
|
+
github.com/samchon/ttsc/packages/ttsc/shim/vfs v0.0.0-20260709053824-84bdc4acccb0/go.mod h1:HoQcoC0FEG3iMI6zvjg8r6j/ves+RVH6SRn48VSi5H0=
|
|
37
|
+
github.com/samchon/ttsc/packages/ttsc/shim/vfs/cachedvfs v0.0.0-20260709053824-84bdc4acccb0 h1:rOw6pmYXNlaC0KKG9D38HTJEsfNiDI1+u2mBA8QRbZ8=
|
|
38
|
+
github.com/samchon/ttsc/packages/ttsc/shim/vfs/cachedvfs v0.0.0-20260709053824-84bdc4acccb0/go.mod h1:XS3LhXkn5xadyRe3tW+9+suW/7gh7dPdL43Q+s/lUDo=
|
|
39
|
+
github.com/samchon/ttsc/packages/ttsc/shim/vfs/osvfs v0.0.0-20260709053824-84bdc4acccb0 h1:LXPQxe57qlWiHG5s8pQOKZD4nZRnRkrKIDsdJVfh2ws=
|
|
40
|
+
github.com/samchon/ttsc/packages/ttsc/shim/vfs/osvfs v0.0.0-20260709053824-84bdc4acccb0/go.mod h1:otX+qw8aZLNCoBmCwMAn53Nw0RQTPzSoId3DxmE67So=
|
|
41
|
+
github.com/samchon/typia/packages/typia/native v0.0.0-20260709134626-fd1c6686950f h1:8axuxtT7YdYhJy7so6SDxVK2oJPDkq8vl55K+nTudtw=
|
|
42
|
+
github.com/samchon/typia/packages/typia/native v0.0.0-20260709134626-fd1c6686950f/go.mod h1:SJDrfiCEK5dtObhJeAl0iqelqmmFm/JIjfJ6z0kID60=
|
|
43
|
+
github.com/zeebo/assert v1.3.0 h1:g7C04CbJuIDKNPFHmsk4hwZDO5O+kntRxzaUoNXj+IQ=
|
|
44
|
+
github.com/zeebo/assert v1.3.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0=
|
|
45
|
+
github.com/zeebo/xxh3 v1.1.0 h1:s7DLGDK45Dyfg7++yxI0khrfwq9661w9EN78eP/UZVs=
|
|
46
|
+
github.com/zeebo/xxh3 v1.1.0/go.mod h1:IisAie1LELR4xhVinxWS5+zf1lA4p0MW4T+w+W07F5s=
|
|
47
|
+
golang.org/x/sync v0.20.0 h1:e0PTpb7pjO8GAtTs2dQ6jYa5BWYlMuX047Dco/pItO4=
|
|
48
|
+
golang.org/x/sync v0.20.0/go.mod h1:9xrNwdLfx4jkKbNva9FpL6vEN7evnE43NNNJQ2LF3+0=
|
|
49
|
+
golang.org/x/sys v0.43.0 h1:Rlag2XtaFTxp19wS8MXlJwTvoh8ArU6ezoyFsMyCTNI=
|
|
50
|
+
golang.org/x/sys v0.43.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=
|
|
51
|
+
golang.org/x/text v0.36.0 h1:JfKh3XmcRPqZPKevfXVpI1wXPTqbkE5f7JA92a55Yxg=
|
|
52
|
+
golang.org/x/text v0.36.0/go.mod h1:NIdBknypM8iqVmPiuco0Dh6P5Jcdk8lJL0CUebqK164=
|
|
53
|
+
gotest.tools/v3 v3.5.2 h1:7koQfIKdy+I8UTetycgUqXWSDwpgv193Ka+qRsmBY8Q=
|
|
54
|
+
gotest.tools/v3 v3.5.2/go.mod h1:LtdLGcnqToBH83WByAAi/wiwSFCArdFIUV/xxN4pcjA=
|