@nestia/sdk 12.0.0-rc.2 → 12.0.0-rc.3
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/assets/bundle/api/HttpError.ts +1 -1
- package/assets/bundle/api/IConnection.ts +1 -1
- package/assets/bundle/api/Primitive.ts +1 -1
- package/assets/bundle/api/Resolved.ts +1 -1
- package/assets/bundle/api/index.ts +4 -4
- package/assets/bundle/api/module.ts +6 -6
- package/assets/bundle/distribute/README.md +37 -37
- package/assets/bundle/distribute/package.json +28 -28
- package/assets/bundle/distribute/tsconfig.json +109 -109
- package/assets/bundle/e2e/index.ts +42 -42
- package/assets/config/nestia.config.ts +97 -97
- package/lib/executable/sdk.js +12 -12
- package/native/go.mod +35 -52
- package/native/go.sum +54 -84
- package/native/sdk/register.go +322 -322
- package/native/sdk/sdk.go +17 -17
- package/native/sdk/sdk_metadata_json.go +327 -327
- package/native/sdk/sdk_transform.go +1879 -1879
- package/package.json +10 -10
- package/src/INestiaConfig.ts +267 -267
- package/src/NestiaSwaggerComposer.ts +152 -152
- package/src/analyses/AccessorAnalyzer.ts +93 -93
- package/src/analyses/ConfigAnalyzer.ts +344 -344
- package/src/analyses/ImportAnalyzer.ts +92 -92
- package/src/analyses/PathAnalyzer.ts +130 -130
- package/src/analyses/ReflectControllerAnalyzer.ts +112 -112
- package/src/analyses/ReflectHttpOperationAnalyzer.ts +183 -183
- package/src/analyses/ReflectHttpOperationExceptionAnalyzer.ts +90 -90
- package/src/analyses/ReflectHttpOperationParameterAnalyzer.ts +350 -350
- package/src/analyses/ReflectHttpOperationResponseAnalyzer.ts +163 -163
- package/src/analyses/ReflectMcpOperationAnalyzer.ts +124 -124
- package/src/analyses/ReflectMetadataAnalyzer.ts +44 -44
- package/src/analyses/SecurityAnalyzer.ts +25 -25
- package/src/analyses/TypedMcpRouteAnalyzer.ts +34 -34
- package/src/decorators/OperationMetadata.ts +29 -29
- package/src/executable/internal/CommandParser.ts +15 -15
- package/src/executable/internal/NestiaConfigLoader.ts +451 -451
- package/src/executable/internal/NestiaSdkCommand.ts +124 -124
- package/src/executable/internal/NestiaSdkWatcher.ts +342 -342
- package/src/executable/sdk.ts +90 -90
- package/src/factories/ExpressionFactory.ts +23 -23
- package/src/factories/IdentifierFactory.ts +84 -84
- package/src/factories/LiteralFactory.ts +54 -54
- package/src/factories/StatementFactory.ts +56 -56
- package/src/factories/TypeFactory.ts +27 -27
- package/src/generates/CloneGenerator.ts +74 -74
- package/src/generates/E2eGenerator.ts +32 -32
- package/src/generates/SdkGenerator.ts +176 -176
- package/src/generates/SwaggerGenerator.ts +342 -342
- package/src/generates/internal/E2eFileProgrammer.ts +246 -246
- package/src/generates/internal/FilePrinter.ts +57 -57
- package/src/generates/internal/ImportDictionary.ts +207 -207
- package/src/generates/internal/SdkAliasCollection.ts +280 -280
- package/src/generates/internal/SdkDistributionComposer.ts +123 -123
- package/src/generates/internal/SdkFileProgrammer.ts +113 -113
- package/src/generates/internal/SdkHttpCloneProgrammer.ts +124 -124
- package/src/generates/internal/SdkHttpCloneReferencer.ts +131 -131
- package/src/generates/internal/SdkHttpFunctionProgrammer.ts +290 -290
- package/src/generates/internal/SdkHttpNamespaceProgrammer.ts +507 -507
- package/src/generates/internal/SdkHttpParameterProgrammer.ts +163 -163
- package/src/generates/internal/SdkHttpRouteProgrammer.ts +109 -109
- package/src/generates/internal/SdkHttpSimulationProgrammer.ts +322 -322
- package/src/generates/internal/SdkImportWizard.ts +62 -62
- package/src/generates/internal/SdkMcpRouteProgrammer.ts +447 -447
- package/src/generates/internal/SdkRouteDirectory.ts +21 -21
- package/src/generates/internal/SdkTypeProgrammer.ts +389 -389
- package/src/generates/internal/SdkTypeTagProgrammer.ts +110 -110
- package/src/generates/internal/SdkWebSocketCloneProgrammer.ts +319 -319
- package/src/generates/internal/SdkWebSocketNamespaceProgrammer.ts +383 -383
- package/src/generates/internal/SdkWebSocketParameterProgrammer.ts +91 -91
- package/src/generates/internal/SdkWebSocketRouteProgrammer.ts +304 -304
- package/src/generates/internal/SwaggerDescriptionComposer.ts +64 -64
- package/src/generates/internal/SwaggerOperationComposer.ts +119 -119
- package/src/generates/internal/SwaggerOperationParameterComposer.ts +175 -175
- package/src/generates/internal/SwaggerOperationResponseComposer.ts +115 -115
- package/src/generates/internal/SwaggerReadonlyArrayEmender.ts +262 -262
- package/src/index.ts +4 -4
- package/src/internal/legacy.ts +492 -492
- package/src/module.ts +4 -4
- package/src/structures/INestiaProject.ts +10 -10
- package/src/structures/INestiaSdkInput.ts +27 -27
- package/src/structures/IOperationMetadata.ts +41 -41
- package/src/structures/IReflectController.ts +18 -18
- package/src/structures/IReflectHttpOperation.ts +26 -26
- package/src/structures/IReflectHttpOperationException.ts +18 -18
- package/src/structures/IReflectHttpOperationParameter.ts +79 -79
- package/src/structures/IReflectHttpOperationSuccess.ts +18 -18
- package/src/structures/IReflectImport.ts +6 -6
- package/src/structures/IReflectMcpOperation.ts +38 -38
- package/src/structures/IReflectMcpOperationParameter.ts +27 -27
- package/src/structures/IReflectOperationError.ts +26 -26
- package/src/structures/IReflectType.ts +4 -4
- package/src/structures/IReflectWebSocketOperation.ts +17 -17
- package/src/structures/ITypedApplication.ts +12 -12
- package/src/structures/ITypedHttpRoute.ts +41 -41
- package/src/structures/ITypedHttpRouteException.ts +15 -15
- package/src/structures/ITypedHttpRouteParameter.ts +41 -41
- package/src/structures/ITypedHttpRouteSuccess.ts +18 -18
- package/src/structures/ITypedMcpRoute.ts +33 -33
- package/src/structures/ITypedWebSocketRoute.ts +24 -24
- package/src/structures/ITypedWebSocketRouteParameter.ts +3 -3
- package/src/transform.ts +28 -28
- package/src/typings/get-function-location.d.ts +7 -7
- package/src/utils/ArrayUtil.ts +26 -26
- package/src/utils/EmittedJavaScriptPatcher.ts +88 -88
- package/src/utils/FileRetriever.ts +22 -22
- package/src/utils/HttpResponseContentTypeUtil.ts +30 -30
- package/src/utils/MapUtil.ts +14 -14
- package/src/utils/PathUtil.ts +10 -10
- package/src/utils/SourceFinder.ts +69 -69
- package/src/utils/StringUtil.ts +17 -17
- package/src/utils/TsConfigReader.ts +108 -108
- package/src/utils/TtscExecutor.ts +68 -68
- package/src/utils/VersioningStrategy.ts +28 -28
- package/src/validators/HttpHeadersValidator.ts +11 -11
- package/src/validators/HttpQueryValidator.ts +11 -11
- package/src/validators/TextPlainValidator.ts +17 -17
- package/README.md +0 -93
|
@@ -1,97 +1,97 @@
|
|
|
1
|
-
import { INestiaConfig } from "@nestia/sdk";
|
|
2
|
-
import { Module } from "@nestjs/common";
|
|
3
|
-
import { NestFactory } from "@nestjs/core";
|
|
4
|
-
|
|
5
|
-
// import { FastifyAdapter } from "@nestjs/platform-fastify";
|
|
6
|
-
|
|
7
|
-
export const NESTIA_CONFIG: INestiaConfig = {
|
|
8
|
-
/**
|
|
9
|
-
* Accessor of controller classes.
|
|
10
|
-
*
|
|
11
|
-
* You can specify it within two ways.
|
|
12
|
-
*
|
|
13
|
-
* - Asynchronous function returning `INestApplication` instance
|
|
14
|
-
* - Specify the path or directory of controller class files
|
|
15
|
-
*/
|
|
16
|
-
// input: "src/controllers",
|
|
17
|
-
// input: "src/**/*.controller.ts",
|
|
18
|
-
input: async () => {
|
|
19
|
-
// change this to your own module
|
|
20
|
-
@Module({
|
|
21
|
-
controllers: [],
|
|
22
|
-
})
|
|
23
|
-
class MyModule {}
|
|
24
|
-
const app = await NestFactory.create(MyModule);
|
|
25
|
-
// const app = await NestFactory.create(YourModule, new FastifyAdapter());
|
|
26
|
-
// app.setGlobalPrefix("api");
|
|
27
|
-
// app.enableVersioning({
|
|
28
|
-
// type: VersioningType.URI,
|
|
29
|
-
// prefix: "v",
|
|
30
|
-
// })
|
|
31
|
-
return app;
|
|
32
|
-
},
|
|
33
|
-
|
|
34
|
-
/**
|
|
35
|
-
* Building `swagger.json` is also possible.
|
|
36
|
-
*
|
|
37
|
-
* If not specified, you can't build the `swagger.json`.
|
|
38
|
-
*/
|
|
39
|
-
swagger: {
|
|
40
|
-
/**
|
|
41
|
-
* Output path of the `swagger.json`.
|
|
42
|
-
*
|
|
43
|
-
* If you've configured only directory, the file name would be the `swagger.json`.
|
|
44
|
-
* Otherwise you've configured the full path with file name and extension, the
|
|
45
|
-
* `swagger.json` file would be renamed to it.
|
|
46
|
-
*/
|
|
47
|
-
output: "dist/swagger.json",
|
|
48
|
-
},
|
|
49
|
-
|
|
50
|
-
/**
|
|
51
|
-
* Output directory that SDK would be placed in.
|
|
52
|
-
*
|
|
53
|
-
* If not configured, you can't build the SDK library.
|
|
54
|
-
*/
|
|
55
|
-
output: "src/api",
|
|
56
|
-
|
|
57
|
-
/**
|
|
58
|
-
* Target directory that SDK distribution files would be placed in.
|
|
59
|
-
*
|
|
60
|
-
* If you configure this property and runs `npx nestia sdk` command,
|
|
61
|
-
* distribution environments for the SDK library would be generated.
|
|
62
|
-
*
|
|
63
|
-
* After the SDK library generation, move to the `distribute` directory,
|
|
64
|
-
* and runs `npm publish` command, then you can share SDK library with
|
|
65
|
-
* other client (frontend) developers.
|
|
66
|
-
*/
|
|
67
|
-
// distribute: "packages/api",
|
|
68
|
-
|
|
69
|
-
/**
|
|
70
|
-
* Whether to use propagation mode or not.
|
|
71
|
-
*
|
|
72
|
-
* If being configured, interaction functions of the SDK library would
|
|
73
|
-
* perform the propagation mode. The propagation mode means that never
|
|
74
|
-
* throwing exception even when status code is not 200 (or 201), but just
|
|
75
|
-
* returning the {@link IPropagation} typed instance, which can specify its body
|
|
76
|
-
* type through discriminated union determined by status code.
|
|
77
|
-
*
|
|
78
|
-
* @default false
|
|
79
|
-
*/
|
|
80
|
-
// propagate: true,
|
|
81
|
-
|
|
82
|
-
/**
|
|
83
|
-
* Allow simulation mode.
|
|
84
|
-
*
|
|
85
|
-
* If you configure this property to be `true`, the SDK library would be contain
|
|
86
|
-
* simulation mode. In the simulation mode, the SDK library would not communicate
|
|
87
|
-
* with the real backend server, but just returns random mock-up data
|
|
88
|
-
* with requestion data validation.
|
|
89
|
-
*
|
|
90
|
-
* For reference, random mock-up data would be generated by `typia.random<T>()`
|
|
91
|
-
* function.
|
|
92
|
-
*
|
|
93
|
-
* @default false
|
|
94
|
-
*/
|
|
95
|
-
// simulate: true,
|
|
96
|
-
};
|
|
97
|
-
export default NESTIA_CONFIG;
|
|
1
|
+
import { INestiaConfig } from "@nestia/sdk";
|
|
2
|
+
import { Module } from "@nestjs/common";
|
|
3
|
+
import { NestFactory } from "@nestjs/core";
|
|
4
|
+
|
|
5
|
+
// import { FastifyAdapter } from "@nestjs/platform-fastify";
|
|
6
|
+
|
|
7
|
+
export const NESTIA_CONFIG: INestiaConfig = {
|
|
8
|
+
/**
|
|
9
|
+
* Accessor of controller classes.
|
|
10
|
+
*
|
|
11
|
+
* You can specify it within two ways.
|
|
12
|
+
*
|
|
13
|
+
* - Asynchronous function returning `INestApplication` instance
|
|
14
|
+
* - Specify the path or directory of controller class files
|
|
15
|
+
*/
|
|
16
|
+
// input: "src/controllers",
|
|
17
|
+
// input: "src/**/*.controller.ts",
|
|
18
|
+
input: async () => {
|
|
19
|
+
// change this to your own module
|
|
20
|
+
@Module({
|
|
21
|
+
controllers: [],
|
|
22
|
+
})
|
|
23
|
+
class MyModule {}
|
|
24
|
+
const app = await NestFactory.create(MyModule);
|
|
25
|
+
// const app = await NestFactory.create(YourModule, new FastifyAdapter());
|
|
26
|
+
// app.setGlobalPrefix("api");
|
|
27
|
+
// app.enableVersioning({
|
|
28
|
+
// type: VersioningType.URI,
|
|
29
|
+
// prefix: "v",
|
|
30
|
+
// })
|
|
31
|
+
return app;
|
|
32
|
+
},
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* Building `swagger.json` is also possible.
|
|
36
|
+
*
|
|
37
|
+
* If not specified, you can't build the `swagger.json`.
|
|
38
|
+
*/
|
|
39
|
+
swagger: {
|
|
40
|
+
/**
|
|
41
|
+
* Output path of the `swagger.json`.
|
|
42
|
+
*
|
|
43
|
+
* If you've configured only directory, the file name would be the `swagger.json`.
|
|
44
|
+
* Otherwise you've configured the full path with file name and extension, the
|
|
45
|
+
* `swagger.json` file would be renamed to it.
|
|
46
|
+
*/
|
|
47
|
+
output: "dist/swagger.json",
|
|
48
|
+
},
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* Output directory that SDK would be placed in.
|
|
52
|
+
*
|
|
53
|
+
* If not configured, you can't build the SDK library.
|
|
54
|
+
*/
|
|
55
|
+
output: "src/api",
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* Target directory that SDK distribution files would be placed in.
|
|
59
|
+
*
|
|
60
|
+
* If you configure this property and runs `npx nestia sdk` command,
|
|
61
|
+
* distribution environments for the SDK library would be generated.
|
|
62
|
+
*
|
|
63
|
+
* After the SDK library generation, move to the `distribute` directory,
|
|
64
|
+
* and runs `npm publish` command, then you can share SDK library with
|
|
65
|
+
* other client (frontend) developers.
|
|
66
|
+
*/
|
|
67
|
+
// distribute: "packages/api",
|
|
68
|
+
|
|
69
|
+
/**
|
|
70
|
+
* Whether to use propagation mode or not.
|
|
71
|
+
*
|
|
72
|
+
* If being configured, interaction functions of the SDK library would
|
|
73
|
+
* perform the propagation mode. The propagation mode means that never
|
|
74
|
+
* throwing exception even when status code is not 200 (or 201), but just
|
|
75
|
+
* returning the {@link IPropagation} typed instance, which can specify its body
|
|
76
|
+
* type through discriminated union determined by status code.
|
|
77
|
+
*
|
|
78
|
+
* @default false
|
|
79
|
+
*/
|
|
80
|
+
// propagate: true,
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* Allow simulation mode.
|
|
84
|
+
*
|
|
85
|
+
* If you configure this property to be `true`, the SDK library would be contain
|
|
86
|
+
* simulation mode. In the simulation mode, the SDK library would not communicate
|
|
87
|
+
* with the real backend server, but just returns random mock-up data
|
|
88
|
+
* with requestion data validation.
|
|
89
|
+
*
|
|
90
|
+
* For reference, random mock-up data would be generated by `typia.random<T>()`
|
|
91
|
+
* function.
|
|
92
|
+
*
|
|
93
|
+
* @default false
|
|
94
|
+
*/
|
|
95
|
+
// simulate: true,
|
|
96
|
+
};
|
|
97
|
+
export default NESTIA_CONFIG;
|
package/lib/executable/sdk.js
CHANGED
|
@@ -50,18 +50,18 @@ const child_process_1 = __importDefault(require("child_process"));
|
|
|
50
50
|
const fs_1 = __importDefault(require("fs"));
|
|
51
51
|
const process_1 = __importDefault(require("process"));
|
|
52
52
|
const CommandParser_1 = require("./internal/CommandParser");
|
|
53
|
-
const USAGE = `Wrong command has been detected. Use like below:
|
|
54
|
-
|
|
55
|
-
npx @nestia/sdk [command] [options?]
|
|
56
|
-
|
|
57
|
-
1. npx @nestia/sdk dependencies --manager (npm|pnpm|yarn)
|
|
58
|
-
- npx @nestia/sdk dependencies
|
|
59
|
-
- npx @nestia/sdk dependencies --manager pnpm
|
|
60
|
-
2. npx @nestia/sdk init
|
|
61
|
-
3. npx @nestia/sdk sdk --config? [config file] --project? [project file]
|
|
62
|
-
4. npx @nestia/sdk swagger --watch? --config? [config file] --project? [project file]
|
|
63
|
-
5. npx @nestia/sdk e2e --config? [config file] --project? [project file]
|
|
64
|
-
6. npx @nestia/sdk all --config? [config file] --project? [project file]
|
|
53
|
+
const USAGE = `Wrong command has been detected. Use like below:
|
|
54
|
+
|
|
55
|
+
npx @nestia/sdk [command] [options?]
|
|
56
|
+
|
|
57
|
+
1. npx @nestia/sdk dependencies --manager (npm|pnpm|yarn)
|
|
58
|
+
- npx @nestia/sdk dependencies
|
|
59
|
+
- npx @nestia/sdk dependencies --manager pnpm
|
|
60
|
+
2. npx @nestia/sdk init
|
|
61
|
+
3. npx @nestia/sdk sdk --config? [config file] --project? [project file]
|
|
62
|
+
4. npx @nestia/sdk swagger --watch? --config? [config file] --project? [project file]
|
|
63
|
+
5. npx @nestia/sdk e2e --config? [config file] --project? [project file]
|
|
64
|
+
6. npx @nestia/sdk all --config? [config file] --project? [project file]
|
|
65
65
|
`;
|
|
66
66
|
function halt(desc) {
|
|
67
67
|
console.error(desc);
|
package/native/go.mod
CHANGED
|
@@ -1,52 +1,35 @@
|
|
|
1
|
-
module github.com/samchon/nestia/packages/sdk/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/printer v0.0.0
|
|
9
|
-
github.com/microsoft/typescript-go/shim/scanner v0.0.0
|
|
10
|
-
github.com/samchon/nestia/packages/core/native v0.0.0
|
|
11
|
-
github.com/samchon/ttsc/packages/ttsc v0.0.0
|
|
12
|
-
github.com/samchon/typia/packages/typia/native v0.0.0-
|
|
13
|
-
)
|
|
14
|
-
|
|
15
|
-
require (
|
|
16
|
-
github.com/go-json-experiment/json v0.0.0-20260214004413-d219187c3433 // indirect
|
|
17
|
-
github.com/klauspost/cpuid/v2 v2.2.10 // indirect
|
|
18
|
-
github.com/microsoft/typescript-go v0.0.0-20260429010842-56ab4af42157 // indirect
|
|
19
|
-
github.com/microsoft/typescript-go/shim/bundled v0.0.0 // indirect
|
|
20
|
-
github.com/microsoft/typescript-go/shim/compiler v0.0.0 // indirect
|
|
21
|
-
github.com/microsoft/typescript-go/shim/core v0.0.0 // indirect
|
|
22
|
-
github.com/microsoft/typescript-go/shim/diagnosticwriter v0.0.0 // indirect
|
|
23
|
-
github.com/microsoft/typescript-go/shim/parser v0.0.0 // indirect
|
|
24
|
-
github.com/microsoft/typescript-go/shim/tsoptions v0.0.0 // indirect
|
|
25
|
-
github.com/microsoft/typescript-go/shim/tspath v0.0.0 // indirect
|
|
26
|
-
github.com/microsoft/typescript-go/shim/vfs v0.0.0 // indirect
|
|
27
|
-
github.com/microsoft/typescript-go/shim/vfs/cachedvfs v0.0.0 // indirect
|
|
28
|
-
github.com/microsoft/typescript-go/shim/vfs/osvfs v0.0.0 // indirect
|
|
29
|
-
github.com/zeebo/xxh3 v1.1.0 // indirect
|
|
30
|
-
golang.org/x/sync v0.20.0 // indirect
|
|
31
|
-
golang.org/x/sys v0.43.0 // indirect
|
|
32
|
-
golang.org/x/text v0.36.0 // indirect
|
|
33
|
-
)
|
|
34
|
-
|
|
35
|
-
replace
|
|
36
|
-
github.com/microsoft/typescript-go/shim/ast => github.com/samchon/ttsc/packages/ttsc/shim/ast v0.0.0-20260605102019-02361f943e18
|
|
37
|
-
github.com/microsoft/typescript-go/shim/bundled => github.com/samchon/ttsc/packages/ttsc/shim/bundled v0.0.0-20260605102019-02361f943e18
|
|
38
|
-
github.com/microsoft/typescript-go/shim/checker => github.com/samchon/ttsc/packages/ttsc/shim/checker v0.0.0-20260605102019-02361f943e18
|
|
39
|
-
github.com/microsoft/typescript-go/shim/compiler => github.com/samchon/ttsc/packages/ttsc/shim/compiler v0.0.0-20260605102019-02361f943e18
|
|
40
|
-
github.com/microsoft/typescript-go/shim/core => github.com/samchon/ttsc/packages/ttsc/shim/core v0.0.0-20260605102019-02361f943e18
|
|
41
|
-
github.com/microsoft/typescript-go/shim/diagnosticwriter => github.com/samchon/ttsc/packages/ttsc/shim/diagnosticwriter v0.0.0-20260605102019-02361f943e18
|
|
42
|
-
github.com/microsoft/typescript-go/shim/parser => github.com/samchon/ttsc/packages/ttsc/shim/parser v0.0.0-20260605102019-02361f943e18
|
|
43
|
-
github.com/microsoft/typescript-go/shim/printer => github.com/samchon/ttsc/packages/ttsc/shim/printer v0.0.0-20260605102019-02361f943e18
|
|
44
|
-
github.com/microsoft/typescript-go/shim/scanner => github.com/samchon/ttsc/packages/ttsc/shim/scanner v0.0.0-20260605102019-02361f943e18
|
|
45
|
-
github.com/microsoft/typescript-go/shim/tsoptions => github.com/samchon/ttsc/packages/ttsc/shim/tsoptions v0.0.0-20260605102019-02361f943e18
|
|
46
|
-
github.com/microsoft/typescript-go/shim/tspath => github.com/samchon/ttsc/packages/ttsc/shim/tspath v0.0.0-20260605102019-02361f943e18
|
|
47
|
-
github.com/microsoft/typescript-go/shim/vfs => github.com/samchon/ttsc/packages/ttsc/shim/vfs v0.0.0-20260605102019-02361f943e18
|
|
48
|
-
github.com/microsoft/typescript-go/shim/vfs/cachedvfs => github.com/samchon/ttsc/packages/ttsc/shim/vfs/cachedvfs v0.0.0-20260605102019-02361f943e18
|
|
49
|
-
github.com/microsoft/typescript-go/shim/vfs/osvfs => github.com/samchon/ttsc/packages/ttsc/shim/vfs/osvfs v0.0.0-20260605102019-02361f943e18
|
|
50
|
-
github.com/samchon/nestia/packages/core/native => ../../core/native
|
|
51
|
-
github.com/samchon/ttsc/packages/ttsc v0.0.0 => github.com/samchon/ttsc/packages/ttsc v0.0.0-20260605102019-02361f943e18
|
|
52
|
-
)
|
|
1
|
+
module github.com/samchon/nestia/packages/sdk/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/printer v0.0.0
|
|
9
|
+
github.com/microsoft/typescript-go/shim/scanner v0.0.0
|
|
10
|
+
github.com/samchon/nestia/packages/core/native v0.0.0
|
|
11
|
+
github.com/samchon/ttsc/packages/ttsc v0.0.0
|
|
12
|
+
github.com/samchon/typia/packages/typia/native v0.0.0-20260709031533-27f105ae8e56
|
|
13
|
+
)
|
|
14
|
+
|
|
15
|
+
require (
|
|
16
|
+
github.com/go-json-experiment/json v0.0.0-20260214004413-d219187c3433 // indirect
|
|
17
|
+
github.com/klauspost/cpuid/v2 v2.2.10 // indirect
|
|
18
|
+
github.com/microsoft/typescript-go v0.0.0-20260429010842-56ab4af42157 // indirect
|
|
19
|
+
github.com/microsoft/typescript-go/shim/bundled v0.0.0 // indirect
|
|
20
|
+
github.com/microsoft/typescript-go/shim/compiler v0.0.0 // indirect
|
|
21
|
+
github.com/microsoft/typescript-go/shim/core v0.0.0 // indirect
|
|
22
|
+
github.com/microsoft/typescript-go/shim/diagnosticwriter v0.0.0 // indirect
|
|
23
|
+
github.com/microsoft/typescript-go/shim/parser v0.0.0 // indirect
|
|
24
|
+
github.com/microsoft/typescript-go/shim/tsoptions v0.0.0 // indirect
|
|
25
|
+
github.com/microsoft/typescript-go/shim/tspath v0.0.0 // indirect
|
|
26
|
+
github.com/microsoft/typescript-go/shim/vfs v0.0.0 // indirect
|
|
27
|
+
github.com/microsoft/typescript-go/shim/vfs/cachedvfs v0.0.0 // indirect
|
|
28
|
+
github.com/microsoft/typescript-go/shim/vfs/osvfs v0.0.0 // indirect
|
|
29
|
+
github.com/zeebo/xxh3 v1.1.0 // indirect
|
|
30
|
+
golang.org/x/sync v0.20.0 // indirect
|
|
31
|
+
golang.org/x/sys v0.43.0 // indirect
|
|
32
|
+
golang.org/x/text v0.36.0 // indirect
|
|
33
|
+
)
|
|
34
|
+
|
|
35
|
+
replace github.com/samchon/nestia/packages/core/native => ../../core/native
|
package/native/go.sum
CHANGED
|
@@ -1,84 +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 v0.0.0-
|
|
14
|
-
github.com/samchon/ttsc/packages/ttsc v0.0.0-
|
|
15
|
-
github.com/samchon/ttsc/packages/ttsc/shim/
|
|
16
|
-
github.com/samchon/ttsc/packages/ttsc/shim/
|
|
17
|
-
github.com/samchon/ttsc/packages/ttsc/shim/
|
|
18
|
-
github.com/samchon/ttsc/packages/ttsc/shim/
|
|
19
|
-
github.com/samchon/ttsc/packages/ttsc/shim/
|
|
20
|
-
github.com/samchon/ttsc/packages/ttsc/shim/
|
|
21
|
-
github.com/samchon/ttsc/packages/ttsc/shim/
|
|
22
|
-
github.com/samchon/ttsc/packages/ttsc/shim/
|
|
23
|
-
github.com/samchon/ttsc/packages/ttsc/shim/
|
|
24
|
-
github.com/samchon/ttsc/packages/ttsc/shim/
|
|
25
|
-
github.com/samchon/ttsc/packages/ttsc/shim/
|
|
26
|
-
github.com/samchon/ttsc/packages/ttsc/shim/
|
|
27
|
-
github.com/samchon/ttsc/packages/ttsc/shim/
|
|
28
|
-
github.com/samchon/ttsc/packages/ttsc/shim/
|
|
29
|
-
github.com/samchon/ttsc/packages/ttsc/shim/
|
|
30
|
-
github.com/samchon/ttsc/packages/ttsc/shim/
|
|
31
|
-
github.com/samchon/ttsc/packages/ttsc/shim/
|
|
32
|
-
github.com/samchon/ttsc/packages/ttsc/shim/
|
|
33
|
-
github.com/samchon/ttsc/packages/ttsc/shim/
|
|
34
|
-
github.com/samchon/ttsc/packages/ttsc/shim/
|
|
35
|
-
github.com/samchon/ttsc/packages/ttsc/shim/
|
|
36
|
-
github.com/samchon/ttsc/packages/ttsc/shim/
|
|
37
|
-
github.com/samchon/ttsc/packages/ttsc/shim/
|
|
38
|
-
github.com/samchon/ttsc/packages/ttsc/shim/
|
|
39
|
-
github.com/samchon/ttsc/packages/ttsc/shim/
|
|
40
|
-
github.com/samchon/ttsc/packages/ttsc/shim/
|
|
41
|
-
github.com/samchon/
|
|
42
|
-
github.com/samchon/
|
|
43
|
-
github.com/
|
|
44
|
-
github.com/
|
|
45
|
-
github.com/
|
|
46
|
-
github.com/
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
github.com/samchon/ttsc/packages/ttsc/shim/tspath v0.0.0-20260519112110-ec1cdf69c509 h1:0GpravTbiWFkotq0V5mCYf719slkFEiqdOJ//00NuGI=
|
|
56
|
-
github.com/samchon/ttsc/packages/ttsc/shim/tspath v0.0.0-20260519112110-ec1cdf69c509/go.mod h1:hsE2c1bZquSNlDLIkT3SfLH3MrDmMk1BLzWI/KomT1A=
|
|
57
|
-
github.com/samchon/ttsc/packages/ttsc/shim/tspath v0.0.0-20260605102019-02361f943e18 h1:2M5RUDGTHDRLuJiXdv++ED4WKcQ6ffZ5PIDzFPZnS5w=
|
|
58
|
-
github.com/samchon/ttsc/packages/ttsc/shim/tspath v0.0.0-20260605102019-02361f943e18/go.mod h1:hsE2c1bZquSNlDLIkT3SfLH3MrDmMk1BLzWI/KomT1A=
|
|
59
|
-
github.com/samchon/ttsc/packages/ttsc/shim/vfs v0.0.0-20260519112110-ec1cdf69c509 h1:H7ZPgQ8g8uAQrrzKnnYrpxNgUFV245r5ZiLcT5BCxRc=
|
|
60
|
-
github.com/samchon/ttsc/packages/ttsc/shim/vfs v0.0.0-20260519112110-ec1cdf69c509/go.mod h1:HoQcoC0FEG3iMI6zvjg8r6j/ves+RVH6SRn48VSi5H0=
|
|
61
|
-
github.com/samchon/ttsc/packages/ttsc/shim/vfs v0.0.0-20260605102019-02361f943e18 h1:iy+nYfhUDPHUHUR+xBO5FPj3J7kA14cKtS+yXmWGpxU=
|
|
62
|
-
github.com/samchon/ttsc/packages/ttsc/shim/vfs v0.0.0-20260605102019-02361f943e18/go.mod h1:HoQcoC0FEG3iMI6zvjg8r6j/ves+RVH6SRn48VSi5H0=
|
|
63
|
-
github.com/samchon/ttsc/packages/ttsc/shim/vfs/cachedvfs v0.0.0-20260519112110-ec1cdf69c509 h1:LpTjuXHHUWskujIXRrbYsuxVWTXHxGG732EheCOVBZ0=
|
|
64
|
-
github.com/samchon/ttsc/packages/ttsc/shim/vfs/cachedvfs v0.0.0-20260519112110-ec1cdf69c509/go.mod h1:XS3LhXkn5xadyRe3tW+9+suW/7gh7dPdL43Q+s/lUDo=
|
|
65
|
-
github.com/samchon/ttsc/packages/ttsc/shim/vfs/cachedvfs v0.0.0-20260605102019-02361f943e18 h1:YUFRat3wEzlcqtMi8rYo37W/JLDCtCMI5/KyVyfebbA=
|
|
66
|
-
github.com/samchon/ttsc/packages/ttsc/shim/vfs/cachedvfs v0.0.0-20260605102019-02361f943e18/go.mod h1:XS3LhXkn5xadyRe3tW+9+suW/7gh7dPdL43Q+s/lUDo=
|
|
67
|
-
github.com/samchon/ttsc/packages/ttsc/shim/vfs/osvfs v0.0.0-20260519112110-ec1cdf69c509 h1:ESHedCnmU7U9bhHD3o5DxWgE5QCOye4FW/TDw6MhXw8=
|
|
68
|
-
github.com/samchon/ttsc/packages/ttsc/shim/vfs/osvfs v0.0.0-20260519112110-ec1cdf69c509/go.mod h1:otX+qw8aZLNCoBmCwMAn53Nw0RQTPzSoId3DxmE67So=
|
|
69
|
-
github.com/samchon/ttsc/packages/ttsc/shim/vfs/osvfs v0.0.0-20260605102019-02361f943e18 h1:ZkdsYuza/vnoilcyB7oUy6joYdnpQGntrfCaKI/24Lw=
|
|
70
|
-
github.com/samchon/ttsc/packages/ttsc/shim/vfs/osvfs v0.0.0-20260605102019-02361f943e18/go.mod h1:otX+qw8aZLNCoBmCwMAn53Nw0RQTPzSoId3DxmE67So=
|
|
71
|
-
github.com/samchon/typia/packages/typia/native v0.0.0-20260605060028-1dfa7ca6193e h1:XmQoxB+Hne1B9zDvZhJ42r/b2ZhdpU8PzQKP7qcnP7o=
|
|
72
|
-
github.com/samchon/typia/packages/typia/native v0.0.0-20260605060028-1dfa7ca6193e/go.mod h1:SJDrfiCEK5dtObhJeAl0iqelqmmFm/JIjfJ6z0kID60=
|
|
73
|
-
github.com/zeebo/assert v1.3.0 h1:g7C04CbJuIDKNPFHmsk4hwZDO5O+kntRxzaUoNXj+IQ=
|
|
74
|
-
github.com/zeebo/assert v1.3.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0=
|
|
75
|
-
github.com/zeebo/xxh3 v1.1.0 h1:s7DLGDK45Dyfg7++yxI0khrfwq9661w9EN78eP/UZVs=
|
|
76
|
-
github.com/zeebo/xxh3 v1.1.0/go.mod h1:IisAie1LELR4xhVinxWS5+zf1lA4p0MW4T+w+W07F5s=
|
|
77
|
-
golang.org/x/sync v0.20.0 h1:e0PTpb7pjO8GAtTs2dQ6jYa5BWYlMuX047Dco/pItO4=
|
|
78
|
-
golang.org/x/sync v0.20.0/go.mod h1:9xrNwdLfx4jkKbNva9FpL6vEN7evnE43NNNJQ2LF3+0=
|
|
79
|
-
golang.org/x/sys v0.43.0 h1:Rlag2XtaFTxp19wS8MXlJwTvoh8ArU6ezoyFsMyCTNI=
|
|
80
|
-
golang.org/x/sys v0.43.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=
|
|
81
|
-
golang.org/x/text v0.36.0 h1:JfKh3XmcRPqZPKevfXVpI1wXPTqbkE5f7JA92a55Yxg=
|
|
82
|
-
golang.org/x/text v0.36.0/go.mod h1:NIdBknypM8iqVmPiuco0Dh6P5Jcdk8lJL0CUebqK164=
|
|
83
|
-
gotest.tools/v3 v3.5.2 h1:7koQfIKdy+I8UTetycgUqXWSDwpgv193Ka+qRsmBY8Q=
|
|
84
|
-
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-20260709031533-27f105ae8e56 h1:hT92UI6siGievvAKmhvxLLhgu3llM1mpgQ91/aFdy/s=
|
|
42
|
+
github.com/samchon/typia/packages/typia/native v0.0.0-20260709031533-27f105ae8e56/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=
|