@apm-js-collab/code-transformer 0.2.0 → 0.3.0
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/package.json +1 -1
- package/pkg/orchestrion_js.d.ts +29 -0
- package/pkg/orchestrion_js.js +547 -0
- package/pkg/orchestrion_js_bg.wasm +0 -0
- package/CHANGELOG.md +0 -8
- package/LICENSE-3rdparty.csv +0 -221
package/package.json
CHANGED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
export function create(configs: InstrumentationConfig[], dc_module?: string | null): InstrumentationMatcher;
|
|
4
|
+
export interface InstrumentationConfig {
|
|
5
|
+
channelName: string;
|
|
6
|
+
module: ModuleMatcher;
|
|
7
|
+
functionQuery: FunctionQuery;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export interface ModuleMatcher {
|
|
11
|
+
name: string;
|
|
12
|
+
versionRange: Range;
|
|
13
|
+
filePath: string;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export type FunctionQuery = { className: string; methodName: string; kind: FunctionKind; index?: number } | { className: string; index?: number } | { methodName: string; kind: FunctionKind; index?: number } | { functionName: string; kind: FunctionKind; index?: number } | { expressionName: string; kind: FunctionKind; index?: number };
|
|
17
|
+
|
|
18
|
+
export type FunctionKind = "Sync" | "Async";
|
|
19
|
+
|
|
20
|
+
export class InstrumentationMatcher {
|
|
21
|
+
private constructor();
|
|
22
|
+
free(): void;
|
|
23
|
+
getTransformer(module_name: string, version: string, file_path: string): Transformer | undefined;
|
|
24
|
+
}
|
|
25
|
+
export class Transformer {
|
|
26
|
+
private constructor();
|
|
27
|
+
free(): void;
|
|
28
|
+
transform(contents: string, is_module: boolean): string;
|
|
29
|
+
}
|
|
@@ -0,0 +1,547 @@
|
|
|
1
|
+
|
|
2
|
+
let imports = {};
|
|
3
|
+
imports['__wbindgen_placeholder__'] = module.exports;
|
|
4
|
+
let wasm;
|
|
5
|
+
const { TextEncoder, TextDecoder } = require(`util`);
|
|
6
|
+
|
|
7
|
+
let WASM_VECTOR_LEN = 0;
|
|
8
|
+
|
|
9
|
+
let cachedUint8ArrayMemory0 = null;
|
|
10
|
+
|
|
11
|
+
function getUint8ArrayMemory0() {
|
|
12
|
+
if (cachedUint8ArrayMemory0 === null || cachedUint8ArrayMemory0.byteLength === 0) {
|
|
13
|
+
cachedUint8ArrayMemory0 = new Uint8Array(wasm.memory.buffer);
|
|
14
|
+
}
|
|
15
|
+
return cachedUint8ArrayMemory0;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
let cachedTextEncoder = new TextEncoder('utf-8');
|
|
19
|
+
|
|
20
|
+
const encodeString = (typeof cachedTextEncoder.encodeInto === 'function'
|
|
21
|
+
? function (arg, view) {
|
|
22
|
+
return cachedTextEncoder.encodeInto(arg, view);
|
|
23
|
+
}
|
|
24
|
+
: function (arg, view) {
|
|
25
|
+
const buf = cachedTextEncoder.encode(arg);
|
|
26
|
+
view.set(buf);
|
|
27
|
+
return {
|
|
28
|
+
read: arg.length,
|
|
29
|
+
written: buf.length
|
|
30
|
+
};
|
|
31
|
+
});
|
|
32
|
+
|
|
33
|
+
function passStringToWasm0(arg, malloc, realloc) {
|
|
34
|
+
|
|
35
|
+
if (realloc === undefined) {
|
|
36
|
+
const buf = cachedTextEncoder.encode(arg);
|
|
37
|
+
const ptr = malloc(buf.length, 1) >>> 0;
|
|
38
|
+
getUint8ArrayMemory0().subarray(ptr, ptr + buf.length).set(buf);
|
|
39
|
+
WASM_VECTOR_LEN = buf.length;
|
|
40
|
+
return ptr;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
let len = arg.length;
|
|
44
|
+
let ptr = malloc(len, 1) >>> 0;
|
|
45
|
+
|
|
46
|
+
const mem = getUint8ArrayMemory0();
|
|
47
|
+
|
|
48
|
+
let offset = 0;
|
|
49
|
+
|
|
50
|
+
for (; offset < len; offset++) {
|
|
51
|
+
const code = arg.charCodeAt(offset);
|
|
52
|
+
if (code > 0x7F) break;
|
|
53
|
+
mem[ptr + offset] = code;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
if (offset !== len) {
|
|
57
|
+
if (offset !== 0) {
|
|
58
|
+
arg = arg.slice(offset);
|
|
59
|
+
}
|
|
60
|
+
ptr = realloc(ptr, len, len = offset + arg.length * 3, 1) >>> 0;
|
|
61
|
+
const view = getUint8ArrayMemory0().subarray(ptr + offset, ptr + len);
|
|
62
|
+
const ret = encodeString(arg, view);
|
|
63
|
+
|
|
64
|
+
offset += ret.written;
|
|
65
|
+
ptr = realloc(ptr, len, offset, 1) >>> 0;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
WASM_VECTOR_LEN = offset;
|
|
69
|
+
return ptr;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
let cachedDataViewMemory0 = null;
|
|
73
|
+
|
|
74
|
+
function getDataViewMemory0() {
|
|
75
|
+
if (cachedDataViewMemory0 === null || cachedDataViewMemory0.buffer.detached === true || (cachedDataViewMemory0.buffer.detached === undefined && cachedDataViewMemory0.buffer !== wasm.memory.buffer)) {
|
|
76
|
+
cachedDataViewMemory0 = new DataView(wasm.memory.buffer);
|
|
77
|
+
}
|
|
78
|
+
return cachedDataViewMemory0;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
function addToExternrefTable0(obj) {
|
|
82
|
+
const idx = wasm.__externref_table_alloc();
|
|
83
|
+
wasm.__wbindgen_export_4.set(idx, obj);
|
|
84
|
+
return idx;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
function handleError(f, args) {
|
|
88
|
+
try {
|
|
89
|
+
return f.apply(this, args);
|
|
90
|
+
} catch (e) {
|
|
91
|
+
const idx = addToExternrefTable0(e);
|
|
92
|
+
wasm.__wbindgen_exn_store(idx);
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
function isLikeNone(x) {
|
|
97
|
+
return x === undefined || x === null;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
function debugString(val) {
|
|
101
|
+
// primitive types
|
|
102
|
+
const type = typeof val;
|
|
103
|
+
if (type == 'number' || type == 'boolean' || val == null) {
|
|
104
|
+
return `${val}`;
|
|
105
|
+
}
|
|
106
|
+
if (type == 'string') {
|
|
107
|
+
return `"${val}"`;
|
|
108
|
+
}
|
|
109
|
+
if (type == 'symbol') {
|
|
110
|
+
const description = val.description;
|
|
111
|
+
if (description == null) {
|
|
112
|
+
return 'Symbol';
|
|
113
|
+
} else {
|
|
114
|
+
return `Symbol(${description})`;
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
if (type == 'function') {
|
|
118
|
+
const name = val.name;
|
|
119
|
+
if (typeof name == 'string' && name.length > 0) {
|
|
120
|
+
return `Function(${name})`;
|
|
121
|
+
} else {
|
|
122
|
+
return 'Function';
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
// objects
|
|
126
|
+
if (Array.isArray(val)) {
|
|
127
|
+
const length = val.length;
|
|
128
|
+
let debug = '[';
|
|
129
|
+
if (length > 0) {
|
|
130
|
+
debug += debugString(val[0]);
|
|
131
|
+
}
|
|
132
|
+
for(let i = 1; i < length; i++) {
|
|
133
|
+
debug += ', ' + debugString(val[i]);
|
|
134
|
+
}
|
|
135
|
+
debug += ']';
|
|
136
|
+
return debug;
|
|
137
|
+
}
|
|
138
|
+
// Test for built-in
|
|
139
|
+
const builtInMatches = /\[object ([^\]]+)\]/.exec(toString.call(val));
|
|
140
|
+
let className;
|
|
141
|
+
if (builtInMatches && builtInMatches.length > 1) {
|
|
142
|
+
className = builtInMatches[1];
|
|
143
|
+
} else {
|
|
144
|
+
// Failed to match the standard '[object ClassName]'
|
|
145
|
+
return toString.call(val);
|
|
146
|
+
}
|
|
147
|
+
if (className == 'Object') {
|
|
148
|
+
// we're a user defined class or Object
|
|
149
|
+
// JSON.stringify avoids problems with cycles, and is generally much
|
|
150
|
+
// easier than looping through ownProperties of `val`.
|
|
151
|
+
try {
|
|
152
|
+
return 'Object(' + JSON.stringify(val) + ')';
|
|
153
|
+
} catch (_) {
|
|
154
|
+
return 'Object';
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
// errors
|
|
158
|
+
if (val instanceof Error) {
|
|
159
|
+
return `${val.name}: ${val.message}\n${val.stack}`;
|
|
160
|
+
}
|
|
161
|
+
// TODO we could test for more things here, like `Set`s and `Map`s.
|
|
162
|
+
return className;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
let cachedTextDecoder = new TextDecoder('utf-8', { ignoreBOM: true, fatal: true });
|
|
166
|
+
|
|
167
|
+
cachedTextDecoder.decode();
|
|
168
|
+
|
|
169
|
+
function getStringFromWasm0(ptr, len) {
|
|
170
|
+
ptr = ptr >>> 0;
|
|
171
|
+
return cachedTextDecoder.decode(getUint8ArrayMemory0().subarray(ptr, ptr + len));
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
function takeFromExternrefTable0(idx) {
|
|
175
|
+
const value = wasm.__wbindgen_export_4.get(idx);
|
|
176
|
+
wasm.__externref_table_dealloc(idx);
|
|
177
|
+
return value;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
function passArrayJsValueToWasm0(array, malloc) {
|
|
181
|
+
const ptr = malloc(array.length * 4, 4) >>> 0;
|
|
182
|
+
for (let i = 0; i < array.length; i++) {
|
|
183
|
+
const add = addToExternrefTable0(array[i]);
|
|
184
|
+
getDataViewMemory0().setUint32(ptr + 4 * i, add, true);
|
|
185
|
+
}
|
|
186
|
+
WASM_VECTOR_LEN = array.length;
|
|
187
|
+
return ptr;
|
|
188
|
+
}
|
|
189
|
+
/**
|
|
190
|
+
* @param {InstrumentationConfig[]} configs
|
|
191
|
+
* @param {string | null} [dc_module]
|
|
192
|
+
* @returns {InstrumentationMatcher}
|
|
193
|
+
*/
|
|
194
|
+
module.exports.create = function(configs, dc_module) {
|
|
195
|
+
const ptr0 = passArrayJsValueToWasm0(configs, wasm.__wbindgen_malloc);
|
|
196
|
+
const len0 = WASM_VECTOR_LEN;
|
|
197
|
+
var ptr1 = isLikeNone(dc_module) ? 0 : passStringToWasm0(dc_module, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
198
|
+
var len1 = WASM_VECTOR_LEN;
|
|
199
|
+
const ret = wasm.create(ptr0, len0, ptr1, len1);
|
|
200
|
+
return InstrumentationMatcher.__wrap(ret);
|
|
201
|
+
};
|
|
202
|
+
|
|
203
|
+
const InstrumentationMatcherFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
204
|
+
? { register: () => {}, unregister: () => {} }
|
|
205
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_instrumentationmatcher_free(ptr >>> 0, 1));
|
|
206
|
+
|
|
207
|
+
class InstrumentationMatcher {
|
|
208
|
+
|
|
209
|
+
static __wrap(ptr) {
|
|
210
|
+
ptr = ptr >>> 0;
|
|
211
|
+
const obj = Object.create(InstrumentationMatcher.prototype);
|
|
212
|
+
obj.__wbg_ptr = ptr;
|
|
213
|
+
InstrumentationMatcherFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
214
|
+
return obj;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
__destroy_into_raw() {
|
|
218
|
+
const ptr = this.__wbg_ptr;
|
|
219
|
+
this.__wbg_ptr = 0;
|
|
220
|
+
InstrumentationMatcherFinalization.unregister(this);
|
|
221
|
+
return ptr;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
free() {
|
|
225
|
+
const ptr = this.__destroy_into_raw();
|
|
226
|
+
wasm.__wbg_instrumentationmatcher_free(ptr, 0);
|
|
227
|
+
}
|
|
228
|
+
/**
|
|
229
|
+
* @param {string} module_name
|
|
230
|
+
* @param {string} version
|
|
231
|
+
* @param {string} file_path
|
|
232
|
+
* @returns {Transformer | undefined}
|
|
233
|
+
*/
|
|
234
|
+
getTransformer(module_name, version, file_path) {
|
|
235
|
+
const ptr0 = passStringToWasm0(module_name, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
236
|
+
const len0 = WASM_VECTOR_LEN;
|
|
237
|
+
const ptr1 = passStringToWasm0(version, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
238
|
+
const len1 = WASM_VECTOR_LEN;
|
|
239
|
+
const ptr2 = passStringToWasm0(file_path, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
240
|
+
const len2 = WASM_VECTOR_LEN;
|
|
241
|
+
const ret = wasm.instrumentationmatcher_getTransformer(this.__wbg_ptr, ptr0, len0, ptr1, len1, ptr2, len2);
|
|
242
|
+
return ret === 0 ? undefined : Transformer.__wrap(ret);
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
module.exports.InstrumentationMatcher = InstrumentationMatcher;
|
|
246
|
+
|
|
247
|
+
const TransformerFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
248
|
+
? { register: () => {}, unregister: () => {} }
|
|
249
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_transformer_free(ptr >>> 0, 1));
|
|
250
|
+
|
|
251
|
+
class Transformer {
|
|
252
|
+
|
|
253
|
+
static __wrap(ptr) {
|
|
254
|
+
ptr = ptr >>> 0;
|
|
255
|
+
const obj = Object.create(Transformer.prototype);
|
|
256
|
+
obj.__wbg_ptr = ptr;
|
|
257
|
+
TransformerFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
258
|
+
return obj;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
__destroy_into_raw() {
|
|
262
|
+
const ptr = this.__wbg_ptr;
|
|
263
|
+
this.__wbg_ptr = 0;
|
|
264
|
+
TransformerFinalization.unregister(this);
|
|
265
|
+
return ptr;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
free() {
|
|
269
|
+
const ptr = this.__destroy_into_raw();
|
|
270
|
+
wasm.__wbg_transformer_free(ptr, 0);
|
|
271
|
+
}
|
|
272
|
+
/**
|
|
273
|
+
* @param {string} contents
|
|
274
|
+
* @param {boolean} is_module
|
|
275
|
+
* @returns {string}
|
|
276
|
+
*/
|
|
277
|
+
transform(contents, is_module) {
|
|
278
|
+
let deferred3_0;
|
|
279
|
+
let deferred3_1;
|
|
280
|
+
try {
|
|
281
|
+
const ptr0 = passStringToWasm0(contents, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
282
|
+
const len0 = WASM_VECTOR_LEN;
|
|
283
|
+
const ret = wasm.transformer_transform(this.__wbg_ptr, ptr0, len0, is_module);
|
|
284
|
+
var ptr2 = ret[0];
|
|
285
|
+
var len2 = ret[1];
|
|
286
|
+
if (ret[3]) {
|
|
287
|
+
ptr2 = 0; len2 = 0;
|
|
288
|
+
throw takeFromExternrefTable0(ret[2]);
|
|
289
|
+
}
|
|
290
|
+
deferred3_0 = ptr2;
|
|
291
|
+
deferred3_1 = len2;
|
|
292
|
+
return getStringFromWasm0(ptr2, len2);
|
|
293
|
+
} finally {
|
|
294
|
+
wasm.__wbindgen_free(deferred3_0, deferred3_1, 1);
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
}
|
|
298
|
+
module.exports.Transformer = Transformer;
|
|
299
|
+
|
|
300
|
+
module.exports.__wbg_String_8f0eb39a4a4c2f66 = function(arg0, arg1) {
|
|
301
|
+
const ret = String(arg1);
|
|
302
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
303
|
+
const len1 = WASM_VECTOR_LEN;
|
|
304
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
305
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
306
|
+
};
|
|
307
|
+
|
|
308
|
+
module.exports.__wbg_buffer_609cc3eee51ed158 = function(arg0) {
|
|
309
|
+
const ret = arg0.buffer;
|
|
310
|
+
return ret;
|
|
311
|
+
};
|
|
312
|
+
|
|
313
|
+
module.exports.__wbg_call_672a4d21634d4a24 = function() { return handleError(function (arg0, arg1) {
|
|
314
|
+
const ret = arg0.call(arg1);
|
|
315
|
+
return ret;
|
|
316
|
+
}, arguments) };
|
|
317
|
+
|
|
318
|
+
module.exports.__wbg_done_769e5ede4b31c67b = function(arg0) {
|
|
319
|
+
const ret = arg0.done;
|
|
320
|
+
return ret;
|
|
321
|
+
};
|
|
322
|
+
|
|
323
|
+
module.exports.__wbg_entries_3265d4158b33e5dc = function(arg0) {
|
|
324
|
+
const ret = Object.entries(arg0);
|
|
325
|
+
return ret;
|
|
326
|
+
};
|
|
327
|
+
|
|
328
|
+
module.exports.__wbg_get_67b2ba62fc30de12 = function() { return handleError(function (arg0, arg1) {
|
|
329
|
+
const ret = Reflect.get(arg0, arg1);
|
|
330
|
+
return ret;
|
|
331
|
+
}, arguments) };
|
|
332
|
+
|
|
333
|
+
module.exports.__wbg_get_b9b93047fe3cf45b = function(arg0, arg1) {
|
|
334
|
+
const ret = arg0[arg1 >>> 0];
|
|
335
|
+
return ret;
|
|
336
|
+
};
|
|
337
|
+
|
|
338
|
+
module.exports.__wbg_getwithrefkey_1dc361bd10053bfe = function(arg0, arg1) {
|
|
339
|
+
const ret = arg0[arg1];
|
|
340
|
+
return ret;
|
|
341
|
+
};
|
|
342
|
+
|
|
343
|
+
module.exports.__wbg_instanceof_ArrayBuffer_e14585432e3737fc = function(arg0) {
|
|
344
|
+
let result;
|
|
345
|
+
try {
|
|
346
|
+
result = arg0 instanceof ArrayBuffer;
|
|
347
|
+
} catch (_) {
|
|
348
|
+
result = false;
|
|
349
|
+
}
|
|
350
|
+
const ret = result;
|
|
351
|
+
return ret;
|
|
352
|
+
};
|
|
353
|
+
|
|
354
|
+
module.exports.__wbg_instanceof_Map_f3469ce2244d2430 = function(arg0) {
|
|
355
|
+
let result;
|
|
356
|
+
try {
|
|
357
|
+
result = arg0 instanceof Map;
|
|
358
|
+
} catch (_) {
|
|
359
|
+
result = false;
|
|
360
|
+
}
|
|
361
|
+
const ret = result;
|
|
362
|
+
return ret;
|
|
363
|
+
};
|
|
364
|
+
|
|
365
|
+
module.exports.__wbg_instanceof_Uint8Array_17156bcf118086a9 = function(arg0) {
|
|
366
|
+
let result;
|
|
367
|
+
try {
|
|
368
|
+
result = arg0 instanceof Uint8Array;
|
|
369
|
+
} catch (_) {
|
|
370
|
+
result = false;
|
|
371
|
+
}
|
|
372
|
+
const ret = result;
|
|
373
|
+
return ret;
|
|
374
|
+
};
|
|
375
|
+
|
|
376
|
+
module.exports.__wbg_isArray_a1eab7e0d067391b = function(arg0) {
|
|
377
|
+
const ret = Array.isArray(arg0);
|
|
378
|
+
return ret;
|
|
379
|
+
};
|
|
380
|
+
|
|
381
|
+
module.exports.__wbg_isSafeInteger_343e2beeeece1bb0 = function(arg0) {
|
|
382
|
+
const ret = Number.isSafeInteger(arg0);
|
|
383
|
+
return ret;
|
|
384
|
+
};
|
|
385
|
+
|
|
386
|
+
module.exports.__wbg_iterator_9a24c88df860dc65 = function() {
|
|
387
|
+
const ret = Symbol.iterator;
|
|
388
|
+
return ret;
|
|
389
|
+
};
|
|
390
|
+
|
|
391
|
+
module.exports.__wbg_length_a446193dc22c12f8 = function(arg0) {
|
|
392
|
+
const ret = arg0.length;
|
|
393
|
+
return ret;
|
|
394
|
+
};
|
|
395
|
+
|
|
396
|
+
module.exports.__wbg_length_e2d2a49132c1b256 = function(arg0) {
|
|
397
|
+
const ret = arg0.length;
|
|
398
|
+
return ret;
|
|
399
|
+
};
|
|
400
|
+
|
|
401
|
+
module.exports.__wbg_new_a12002a7f91c75be = function(arg0) {
|
|
402
|
+
const ret = new Uint8Array(arg0);
|
|
403
|
+
return ret;
|
|
404
|
+
};
|
|
405
|
+
|
|
406
|
+
module.exports.__wbg_next_25feadfc0913fea9 = function(arg0) {
|
|
407
|
+
const ret = arg0.next;
|
|
408
|
+
return ret;
|
|
409
|
+
};
|
|
410
|
+
|
|
411
|
+
module.exports.__wbg_next_6574e1a8a62d1055 = function() { return handleError(function (arg0) {
|
|
412
|
+
const ret = arg0.next();
|
|
413
|
+
return ret;
|
|
414
|
+
}, arguments) };
|
|
415
|
+
|
|
416
|
+
module.exports.__wbg_set_65595bdd868b3009 = function(arg0, arg1, arg2) {
|
|
417
|
+
arg0.set(arg1, arg2 >>> 0);
|
|
418
|
+
};
|
|
419
|
+
|
|
420
|
+
module.exports.__wbg_value_cd1ffa7b1ab794f1 = function(arg0) {
|
|
421
|
+
const ret = arg0.value;
|
|
422
|
+
return ret;
|
|
423
|
+
};
|
|
424
|
+
|
|
425
|
+
module.exports.__wbindgen_bigint_from_i64 = function(arg0) {
|
|
426
|
+
const ret = arg0;
|
|
427
|
+
return ret;
|
|
428
|
+
};
|
|
429
|
+
|
|
430
|
+
module.exports.__wbindgen_bigint_from_u64 = function(arg0) {
|
|
431
|
+
const ret = BigInt.asUintN(64, arg0);
|
|
432
|
+
return ret;
|
|
433
|
+
};
|
|
434
|
+
|
|
435
|
+
module.exports.__wbindgen_bigint_get_as_i64 = function(arg0, arg1) {
|
|
436
|
+
const v = arg1;
|
|
437
|
+
const ret = typeof(v) === 'bigint' ? v : undefined;
|
|
438
|
+
getDataViewMemory0().setBigInt64(arg0 + 8 * 1, isLikeNone(ret) ? BigInt(0) : ret, true);
|
|
439
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
440
|
+
};
|
|
441
|
+
|
|
442
|
+
module.exports.__wbindgen_boolean_get = function(arg0) {
|
|
443
|
+
const v = arg0;
|
|
444
|
+
const ret = typeof(v) === 'boolean' ? (v ? 1 : 0) : 2;
|
|
445
|
+
return ret;
|
|
446
|
+
};
|
|
447
|
+
|
|
448
|
+
module.exports.__wbindgen_debug_string = function(arg0, arg1) {
|
|
449
|
+
const ret = debugString(arg1);
|
|
450
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
451
|
+
const len1 = WASM_VECTOR_LEN;
|
|
452
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
453
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
454
|
+
};
|
|
455
|
+
|
|
456
|
+
module.exports.__wbindgen_error_new = function(arg0, arg1) {
|
|
457
|
+
const ret = new Error(getStringFromWasm0(arg0, arg1));
|
|
458
|
+
return ret;
|
|
459
|
+
};
|
|
460
|
+
|
|
461
|
+
module.exports.__wbindgen_in = function(arg0, arg1) {
|
|
462
|
+
const ret = arg0 in arg1;
|
|
463
|
+
return ret;
|
|
464
|
+
};
|
|
465
|
+
|
|
466
|
+
module.exports.__wbindgen_init_externref_table = function() {
|
|
467
|
+
const table = wasm.__wbindgen_export_4;
|
|
468
|
+
const offset = table.grow(4);
|
|
469
|
+
table.set(0, undefined);
|
|
470
|
+
table.set(offset + 0, undefined);
|
|
471
|
+
table.set(offset + 1, null);
|
|
472
|
+
table.set(offset + 2, true);
|
|
473
|
+
table.set(offset + 3, false);
|
|
474
|
+
;
|
|
475
|
+
};
|
|
476
|
+
|
|
477
|
+
module.exports.__wbindgen_is_bigint = function(arg0) {
|
|
478
|
+
const ret = typeof(arg0) === 'bigint';
|
|
479
|
+
return ret;
|
|
480
|
+
};
|
|
481
|
+
|
|
482
|
+
module.exports.__wbindgen_is_function = function(arg0) {
|
|
483
|
+
const ret = typeof(arg0) === 'function';
|
|
484
|
+
return ret;
|
|
485
|
+
};
|
|
486
|
+
|
|
487
|
+
module.exports.__wbindgen_is_object = function(arg0) {
|
|
488
|
+
const val = arg0;
|
|
489
|
+
const ret = typeof(val) === 'object' && val !== null;
|
|
490
|
+
return ret;
|
|
491
|
+
};
|
|
492
|
+
|
|
493
|
+
module.exports.__wbindgen_is_undefined = function(arg0) {
|
|
494
|
+
const ret = arg0 === undefined;
|
|
495
|
+
return ret;
|
|
496
|
+
};
|
|
497
|
+
|
|
498
|
+
module.exports.__wbindgen_jsval_eq = function(arg0, arg1) {
|
|
499
|
+
const ret = arg0 === arg1;
|
|
500
|
+
return ret;
|
|
501
|
+
};
|
|
502
|
+
|
|
503
|
+
module.exports.__wbindgen_jsval_loose_eq = function(arg0, arg1) {
|
|
504
|
+
const ret = arg0 == arg1;
|
|
505
|
+
return ret;
|
|
506
|
+
};
|
|
507
|
+
|
|
508
|
+
module.exports.__wbindgen_memory = function() {
|
|
509
|
+
const ret = wasm.memory;
|
|
510
|
+
return ret;
|
|
511
|
+
};
|
|
512
|
+
|
|
513
|
+
module.exports.__wbindgen_number_get = function(arg0, arg1) {
|
|
514
|
+
const obj = arg1;
|
|
515
|
+
const ret = typeof(obj) === 'number' ? obj : undefined;
|
|
516
|
+
getDataViewMemory0().setFloat64(arg0 + 8 * 1, isLikeNone(ret) ? 0 : ret, true);
|
|
517
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
518
|
+
};
|
|
519
|
+
|
|
520
|
+
module.exports.__wbindgen_string_get = function(arg0, arg1) {
|
|
521
|
+
const obj = arg1;
|
|
522
|
+
const ret = typeof(obj) === 'string' ? obj : undefined;
|
|
523
|
+
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
524
|
+
var len1 = WASM_VECTOR_LEN;
|
|
525
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
526
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
527
|
+
};
|
|
528
|
+
|
|
529
|
+
module.exports.__wbindgen_string_new = function(arg0, arg1) {
|
|
530
|
+
const ret = getStringFromWasm0(arg0, arg1);
|
|
531
|
+
return ret;
|
|
532
|
+
};
|
|
533
|
+
|
|
534
|
+
module.exports.__wbindgen_throw = function(arg0, arg1) {
|
|
535
|
+
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
536
|
+
};
|
|
537
|
+
|
|
538
|
+
const path = require('path').join(__dirname, 'orchestrion_js_bg.wasm');
|
|
539
|
+
const bytes = require('fs').readFileSync(path);
|
|
540
|
+
|
|
541
|
+
const wasmModule = new WebAssembly.Module(bytes);
|
|
542
|
+
const wasmInstance = new WebAssembly.Instance(wasmModule, imports);
|
|
543
|
+
wasm = wasmInstance.exports;
|
|
544
|
+
module.exports.__wasm = wasm;
|
|
545
|
+
|
|
546
|
+
wasm.__wbindgen_start();
|
|
547
|
+
|
|
Binary file
|
package/CHANGELOG.md
DELETED
package/LICENSE-3rdparty.csv
DELETED
|
@@ -1,221 +0,0 @@
|
|
|
1
|
-
Component,Origin,License,Copyright
|
|
2
|
-
Inflector,https://github.com/whatisinternet/inflector,BSD-2-Clause,Josh Teeter<joshteeter@gmail.com>
|
|
3
|
-
ahash,https://github.com/tkaitchuck/ahash,MIT OR Apache-2.0,Tom Kaitchuck <Tom.Kaitchuck@gmail.com>
|
|
4
|
-
aho-corasick,https://github.com/BurntSushi/aho-corasick,Unlicense OR MIT,Andrew Gallant <jamslam@gmail.com>
|
|
5
|
-
allocator-api2,https://github.com/zakarumych/allocator-api2,MIT OR Apache-2.0,Zakarum <zaq.dev@icloud.com>
|
|
6
|
-
android-tzdata,https://github.com/RumovZ/android-tzdata,MIT OR Apache-2.0,RumovZ
|
|
7
|
-
android_system_properties,https://github.com/nical/android_system_properties,MIT OR Apache-2.0,Nicolas Silva <nical@fastmail.com>
|
|
8
|
-
ansi_term,https://github.com/ogham/rust-ansi-term,MIT,"ogham@bsago.me, Ryan Scheel (Havvy) <ryan.havvy@gmail.com>, Josh Triplett <josh@joshtriplett.org>"
|
|
9
|
-
anyhow,https://github.com/dtolnay/anyhow,MIT OR Apache-2.0,David Tolnay <dtolnay@gmail.com>
|
|
10
|
-
arrayvec,https://github.com/bluss/arrayvec,MIT OR Apache-2.0,bluss
|
|
11
|
-
ascii,https://github.com/tomprogrammer/rust-ascii,Apache-2.0 OR MIT,"Thomas Bahn <thomas@thomas-bahn.net>, Torbjørn Birch Moltu <t.b.moltu@lyse.net>, Simon Sapin <simon.sapin@exyr.org>"
|
|
12
|
-
auto_impl,https://github.com/auto-impl-rs/auto_impl,MIT OR Apache-2.0,"Ashley Mannix <ashleymannix@live.com.au>, Lukas Kalbertodt <lukas.kalbertodt@gmail.com>"
|
|
13
|
-
base64,https://github.com/marshallpierce/rust-base64,MIT OR Apache-2.0,Marshall Pierce <marshall@mpierce.org>
|
|
14
|
-
base64-simd,https://github.com/Nugine/simd,MIT,The base64-simd Authors
|
|
15
|
-
bitflags,https://github.com/bitflags/bitflags,MIT OR Apache-2.0,The Rust Project Developers
|
|
16
|
-
bitvec,https://github.com/bitvecto-rs/bitvec,MIT,The bitvec Authors
|
|
17
|
-
block-buffer,https://github.com/RustCrypto/utils,MIT OR Apache-2.0,RustCrypto Developers
|
|
18
|
-
browserslist-rs,https://github.com/browserslist/browserslist-rs,MIT,Pig Fang <g-plane@hotmail.com>
|
|
19
|
-
bumpalo,https://github.com/fitzgen/bumpalo,MIT OR Apache-2.0,Nick Fitzgerald <fitzgen@gmail.com>
|
|
20
|
-
bytecheck,https://github.com/rkyv/bytecheck,MIT,David Koloski <djkoloski@gmail.com>
|
|
21
|
-
bytecount,https://github.com/llogiq/bytecount,Apache-2.0 OR MIT,"Andre Bogus <bogusandre@gmail.de>, Joshua Landau <joshua@landau.ws>"
|
|
22
|
-
bytes,https://github.com/tokio-rs/bytes,MIT,"Carl Lerche <me@carllerche.com>, Sean McArthur <sean@seanmonstar.com>"
|
|
23
|
-
camino,https://github.com/camino-rs/camino,MIT OR Apache-2.0,"Without Boats <saoirse@without.boats>, Ashley Williams <ashley666ashley@gmail.com>, Steve Klabnik <steve@steveklabnik.com>, Rain <rain@sunshowers.io>"
|
|
24
|
-
cargo-platform,https://github.com/rust-lang/cargo,MIT OR Apache-2.0,The cargo-platform Authors
|
|
25
|
-
cargo_metadata,https://github.com/oli-obk/cargo_metadata,MIT,Oliver Schneider <git-spam-no-reply9815368754983@oli-obk.de>
|
|
26
|
-
castaway,https://github.com/sagebind/castaway,MIT,Stephen M. Coakley <me@stephencoakley.com>
|
|
27
|
-
cfg-if,https://github.com/alexcrichton/cfg-if,MIT OR Apache-2.0,Alex Crichton <alex@alexcrichton.com>
|
|
28
|
-
chrono,https://github.com/chronotope/chrono,MIT OR Apache-2.0,The chrono Authors
|
|
29
|
-
compact_str,https://github.com/ParkMyCar/compact_str,MIT,Parker Timmerman <parker@parkertimmerman.com>
|
|
30
|
-
core-foundation-sys,https://github.com/servo/core-foundation-rs,MIT OR Apache-2.0,The Servo Project Developers
|
|
31
|
-
cpufeatures,https://github.com/RustCrypto/utils,MIT OR Apache-2.0,RustCrypto Developers
|
|
32
|
-
crypto-common,https://github.com/RustCrypto/traits,MIT OR Apache-2.0,RustCrypto Developers
|
|
33
|
-
dashmap,https://github.com/xacrimon/dashmap,MIT,Acrimon <joel.wejdenstal@gmail.com>
|
|
34
|
-
data-encoding,https://github.com/ia0/data-encoding,MIT,Julien Cretin <git@ia0.eu>
|
|
35
|
-
debugid,https://github.com/getsentry/rust-debugid,Apache-2.0,Sentry <hello@sentry.io>
|
|
36
|
-
diff,https://github.com/utkarshkukreti/diff.rs,MIT OR Apache-2.0,Utkarsh Kukreti <utkarshkukreti@gmail.com>
|
|
37
|
-
difference,https://github.com/johannhof/difference.rs,MIT,Johann Hofmann <mail@johann-hofmann.com>
|
|
38
|
-
digest,https://github.com/RustCrypto/traits,MIT OR Apache-2.0,RustCrypto Developers
|
|
39
|
-
displaydoc,https://github.com/yaahc/displaydoc,MIT OR Apache-2.0,Jane Lusby <jlusby@yaah.dev>
|
|
40
|
-
either,https://github.com/rayon-rs/either,MIT OR Apache-2.0,bluss
|
|
41
|
-
equivalent,https://github.com/indexmap-rs/equivalent,Apache-2.0 OR MIT,The equivalent Authors
|
|
42
|
-
errno,https://github.com/lambda-fairy/rust-errno,MIT OR Apache-2.0,"Chris Wong <lambda.fairy@gmail.com>, Dan Gohman <dev@sunfishcode.online>"
|
|
43
|
-
fastrand,https://github.com/smol-rs/fastrand,Apache-2.0 OR MIT,Stjepan Glavina <stjepang@gmail.com>
|
|
44
|
-
fixedbitset,https://github.com/petgraph/fixedbitset,MIT OR Apache-2.0,bluss
|
|
45
|
-
funty,https://github.com/myrrlyn/funty,MIT,myrrlyn <self@myrrlyn.dev>
|
|
46
|
-
generic-array,https://github.com/fizyk20/generic-array,MIT,"Bartłomiej Kamiński <fizyk20@gmail.com>, Aaron Trent <novacrazy@gmail.com>"
|
|
47
|
-
getrandom,https://github.com/rust-random/getrandom,MIT OR Apache-2.0,The Rand Project Developers
|
|
48
|
-
glob,https://github.com/rust-lang/glob,MIT OR Apache-2.0,The Rust Project Developers
|
|
49
|
-
hashbrown,https://github.com/rust-lang/hashbrown,MIT OR Apache-2.0,Amanieu d'Antras <amanieu@gmail.com>
|
|
50
|
-
heck,https://github.com/withoutboats/heck,MIT OR Apache-2.0,The heck Authors
|
|
51
|
-
hermit-abi,https://github.com/hermit-os/hermit-rs,MIT OR Apache-2.0,Stefan Lankes
|
|
52
|
-
hex,https://github.com/KokaKiwi/rust-hex,MIT OR Apache-2.0,KokaKiwi <kokakiwi@kokakiwi.net>
|
|
53
|
-
iana-time-zone,https://github.com/strawlab/iana-time-zone,MIT OR Apache-2.0,"Andrew Straw <strawman@astraw.com>, René Kijewski <rene.kijewski@fu-berlin.de>, Ryan Lopopolo <rjl@hyperbo.la>"
|
|
54
|
-
iana-time-zone-haiku,https://github.com/strawlab/iana-time-zone,MIT OR Apache-2.0,René Kijewski <crates.io@k6i.de>
|
|
55
|
-
icu_collections,https://github.com/unicode-org/icu4x,Unicode-3.0,The ICU4X Project Developers
|
|
56
|
-
icu_locid,https://github.com/unicode-org/icu4x,Unicode-3.0,The ICU4X Project Developers
|
|
57
|
-
icu_locid_transform,https://github.com/unicode-org/icu4x,Unicode-3.0,The ICU4X Project Developers
|
|
58
|
-
icu_locid_transform_data,https://github.com/unicode-org/icu4x,Unicode-3.0,The ICU4X Project Developers
|
|
59
|
-
icu_normalizer,https://github.com/unicode-org/icu4x,Unicode-3.0,The ICU4X Project Developers
|
|
60
|
-
icu_normalizer_data,https://github.com/unicode-org/icu4x,Unicode-3.0,The ICU4X Project Developers
|
|
61
|
-
icu_properties,https://github.com/unicode-org/icu4x,Unicode-3.0,The ICU4X Project Developers
|
|
62
|
-
icu_properties_data,https://github.com/unicode-org/icu4x,Unicode-3.0,The ICU4X Project Developers
|
|
63
|
-
icu_provider,https://github.com/unicode-org/icu4x,Unicode-3.0,The ICU4X Project Developers
|
|
64
|
-
icu_provider_macros,https://github.com/unicode-org/icu4x,Unicode-3.0,The ICU4X Project Developers
|
|
65
|
-
idna_adapter,https://github.com/hsivonen/idna_adapter,Apache-2.0 OR MIT,The rust-url developers
|
|
66
|
-
if_chain,https://github.com/lambda-fairy/if_chain,MIT OR Apache-2.0,Chris Wong <lambda.fairy@gmail.com>
|
|
67
|
-
indexmap,https://github.com/indexmap-rs/indexmap,Apache-2.0 OR MIT,The indexmap Authors
|
|
68
|
-
is-macro,https://github.com/dudykr/ddbase,Apache-2.0,강동윤 <kdy1997.dev@gmail.com>
|
|
69
|
-
itertools,https://github.com/rust-itertools/itertools,MIT OR Apache-2.0,bluss
|
|
70
|
-
itoa,https://github.com/dtolnay/itoa,MIT OR Apache-2.0,David Tolnay <dtolnay@gmail.com>
|
|
71
|
-
js-sys,https://github.com/rustwasm/wasm-bindgen/tree/master/crates/js-sys,MIT OR Apache-2.0,The wasm-bindgen Developers
|
|
72
|
-
jsonc-parser,https://github.com/dprint/jsonc-parser,MIT,David Sherret <dsherret@gmail.com>
|
|
73
|
-
lazy_static,https://github.com/rust-lang-nursery/lazy-static.rs,MIT OR Apache-2.0,Marvin Löbel <loebel.marvin@gmail.com>
|
|
74
|
-
libc,https://github.com/rust-lang/libc,MIT OR Apache-2.0,The Rust Project Developers
|
|
75
|
-
linux-raw-sys,https://github.com/sunfishcode/linux-raw-sys,Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT,Dan Gohman <dev@sunfishcode.online>
|
|
76
|
-
litemap,https://github.com/unicode-org/icu4x,Unicode-3.0,The ICU4X Project Developers
|
|
77
|
-
log,https://github.com/rust-lang/log,MIT OR Apache-2.0,The Rust Project Developers
|
|
78
|
-
lru,https://github.com/jeromefroe/lru-rs,MIT,Jerome Froelich <jeromefroelic@hotmail.com>
|
|
79
|
-
matchers,https://github.com/hawkw/matchers,MIT,Eliza Weisman <eliza@buoyant.io>
|
|
80
|
-
memchr,https://github.com/BurntSushi/memchr,Unlicense OR MIT,"Andrew Gallant <jamslam@gmail.com>, bluss"
|
|
81
|
-
miette,https://github.com/zkat/miette,Apache-2.0,Kat Marchán <kzm@zkat.tech>
|
|
82
|
-
minimal-lexical,https://github.com/Alexhuszagh/minimal-lexical,MIT OR Apache-2.0,Alex Huszagh <ahuszagh@gmail.com>
|
|
83
|
-
munge,https://github.com/djkoloski/munge,MIT,David Koloski <djkoloski@gmail.com>
|
|
84
|
-
new_debug_unreachable,https://github.com/mbrubeck/rust-debug-unreachable,MIT,"Matt Brubeck <mbrubeck@limpet.net>, Jonathan Reem <jonathan.reem@gmail.com>"
|
|
85
|
-
nodejs-semver,https://github.com/cijiugechu/nodejs-semver,Apache-2.0,"cijiugechu <cijiugechu@gmail.com>, Felipe Sere <felipesere@gmail.com>, Kat Marchán <kzm@zkat.tech>"
|
|
86
|
-
nom,https://github.com/Geal/nom,MIT,contact@geoffroycouprie.com
|
|
87
|
-
normpath,https://github.com/dylni/normpath,MIT OR Apache-2.0,dylni
|
|
88
|
-
nu-ansi-term,https://github.com/nushell/nu-ansi-term,MIT,"ogham@bsago.me, Ryan Scheel (Havvy) <ryan.havvy@gmail.com>, Josh Triplett <josh@joshtriplett.org>, The Nushell Project Developers"
|
|
89
|
-
num-bigint,https://github.com/rust-num/num-bigint,MIT OR Apache-2.0,The Rust Project Developers
|
|
90
|
-
num-integer,https://github.com/rust-num/num-integer,MIT OR Apache-2.0,The Rust Project Developers
|
|
91
|
-
num-traits,https://github.com/rust-num/num-traits,MIT OR Apache-2.0,The Rust Project Developers
|
|
92
|
-
num_cpus,https://github.com/seanmonstar/num_cpus,MIT OR Apache-2.0,Sean McArthur <sean@seanmonstar.com>
|
|
93
|
-
once_cell,https://github.com/matklad/once_cell,MIT OR Apache-2.0,Aleksey Kladov <aleksey.kladov@gmail.com>
|
|
94
|
-
outref,https://github.com/Nugine/outref,MIT,The outref Authors
|
|
95
|
-
overload,https://github.com/danaugrs/overload,MIT,Daniel Salvadori <danaugrs@gmail.com>
|
|
96
|
-
owo-colors,https://github.com/owo-colors/owo-colors,MIT,jam1garner <8260240+jam1garner@users.noreply.github.com>
|
|
97
|
-
par-core,https://github.com/dudykr/ddbase,Apache-2.0,강동윤 <kdy1997.dev@gmail.com>
|
|
98
|
-
par-iter,https://github.com/dudykr/ddbase,Apache-2.0,The par-iter Authors
|
|
99
|
-
parking_lot,https://github.com/Amanieu/parking_lot,MIT OR Apache-2.0,Amanieu d'Antras <amanieu@gmail.com>
|
|
100
|
-
path-clean,https://github.com/danreeves/path-clean,MIT OR Apache-2.0,Dan Reeves <hey@danreev.es>
|
|
101
|
-
pathdiff,https://github.com/Manishearth/pathdiff,MIT OR Apache-2.0,Manish Goregaokar <manishsmail@gmail.com>
|
|
102
|
-
petgraph,https://github.com/petgraph/petgraph,MIT OR Apache-2.0,"bluss, mitchmindtree"
|
|
103
|
-
phf,https://github.com/rust-phf/rust-phf,MIT,Steven Fackler <sfackler@gmail.com>
|
|
104
|
-
pin-project-lite,https://github.com/taiki-e/pin-project-lite,Apache-2.0 OR MIT,The pin-project-lite Authors
|
|
105
|
-
pretty_assertions,https://github.com/rust-pretty-assertions/rust-pretty-assertions,MIT OR Apache-2.0,"Colin Kiegel <kiegel@gmx.de>, Florent Fayolle <florent.fayolle69@gmail.com>, Tom Milligan <code@tommilligan.net>"
|
|
106
|
-
proc-macro2,https://github.com/dtolnay/proc-macro2,MIT OR Apache-2.0,"David Tolnay <dtolnay@gmail.com>, Alex Crichton <alex@alexcrichton.com>"
|
|
107
|
-
psm,https://github.com/rust-lang/stacker,MIT OR Apache-2.0,Simonas Kazlauskas <psm@kazlauskas.me>
|
|
108
|
-
ptr_meta,https://github.com/rkyv/ptr_meta,MIT,David Koloski <djkoloski@gmail.com>
|
|
109
|
-
quote,https://github.com/dtolnay/quote,MIT OR Apache-2.0,David Tolnay <dtolnay@gmail.com>
|
|
110
|
-
r-efi,https://github.com/r-efi/r-efi,MIT OR Apache-2.0 OR LGPL-2.1-or-later,The r-efi Authors
|
|
111
|
-
radium,https://github.com/bitvecto-rs/radium,MIT,"Nika Layzell <nika@thelayzells.com>, myrrlyn <self@myrrlyn.dev>"
|
|
112
|
-
radix_fmt,https://gitlab.com/Boiethios/radix_fmt_rs,Apache-2.0,Félix <felix-dev@daudre-vignier.fr>
|
|
113
|
-
rancor,https://github.com/rkyv/rancor,MIT,David Koloski <djkoloski@gmail.com>
|
|
114
|
-
rand,https://github.com/rust-random/rand,MIT OR Apache-2.0,"The Rand Project Developers, The Rust Project Developers"
|
|
115
|
-
redox_syscall,https://gitlab.redox-os.org/redox-os/syscall,MIT,Jeremy Soller <jackpot51@gmail.com>
|
|
116
|
-
regex,https://github.com/rust-lang/regex,MIT OR Apache-2.0,"The Rust Project Developers, Andrew Gallant <jamslam@gmail.com>"
|
|
117
|
-
regex-automata,https://github.com/BurntSushi/regex-automata,Unlicense OR MIT,Andrew Gallant <jamslam@gmail.com>
|
|
118
|
-
regex-automata,https://github.com/rust-lang/regex/tree/master/regex-automata,MIT OR Apache-2.0,"The Rust Project Developers, Andrew Gallant <jamslam@gmail.com>"
|
|
119
|
-
regex-syntax,https://github.com/rust-lang/regex,MIT OR Apache-2.0,The Rust Project Developers
|
|
120
|
-
regex-syntax,https://github.com/rust-lang/regex/tree/master/regex-syntax,MIT OR Apache-2.0,"The Rust Project Developers, Andrew Gallant <jamslam@gmail.com>"
|
|
121
|
-
relative-path,https://github.com/udoprog/relative-path,MIT OR Apache-2.0,John-John Tedro <udoprog@tedro.se>
|
|
122
|
-
rend,https://github.com/djkoloski/rend,MIT,David Koloski <djkoloski@gmail.com>
|
|
123
|
-
rkyv,https://github.com/rkyv/rkyv,MIT,David Koloski <djkoloski@gmail.com>
|
|
124
|
-
rustc-hash,https://github.com/rust-lang-nursery/rustc-hash,Apache-2.0 OR MIT,The Rust Project Developers
|
|
125
|
-
rustc-hash,https://github.com/rust-lang/rustc-hash,Apache-2.0 OR MIT,The Rust Project Developers
|
|
126
|
-
rustix,https://github.com/bytecodealliance/rustix,Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT,"Dan Gohman <dev@sunfishcode.online>, Jakub Konka <kubkon@jakubkonka.com>"
|
|
127
|
-
rustversion,https://github.com/dtolnay/rustversion,MIT OR Apache-2.0,David Tolnay <dtolnay@gmail.com>
|
|
128
|
-
ryu,https://github.com/dtolnay/ryu,Apache-2.0 OR BSL-1.0,David Tolnay <dtolnay@gmail.com>
|
|
129
|
-
ryu-js,https://github.com/boa-dev/ryu-js,Apache-2.0 OR BSL-1.0,"David Tolnay <dtolnay@gmail.com>, boa-dev"
|
|
130
|
-
scoped-tls,https://github.com/alexcrichton/scoped-tls,MIT OR Apache-2.0,Alex Crichton <alex@alexcrichton.com>
|
|
131
|
-
scopeguard,https://github.com/bluss/scopeguard,MIT OR Apache-2.0,bluss
|
|
132
|
-
semver,https://github.com/dtolnay/semver,MIT OR Apache-2.0,David Tolnay <dtolnay@gmail.com>
|
|
133
|
-
serde,https://github.com/serde-rs/serde,MIT OR Apache-2.0,"Erick Tryzelaar <erick.tryzelaar@gmail.com>, David Tolnay <dtolnay@gmail.com>"
|
|
134
|
-
serde_json,https://github.com/serde-rs/json,MIT OR Apache-2.0,"Erick Tryzelaar <erick.tryzelaar@gmail.com>, David Tolnay <dtolnay@gmail.com>"
|
|
135
|
-
sha1,https://github.com/RustCrypto/hashes,MIT OR Apache-2.0,RustCrypto Developers
|
|
136
|
-
sha2,https://github.com/RustCrypto/hashes,MIT OR Apache-2.0,RustCrypto Developers
|
|
137
|
-
sharded-slab,https://github.com/hawkw/sharded-slab,MIT,Eliza Weisman <eliza@buoyant.io>
|
|
138
|
-
simd-abstraction,https://github.com/Nugine/simd,MIT,The simd-abstraction Authors
|
|
139
|
-
simdutf8,https://github.com/rusticstuff/simdutf8,MIT OR Apache-2.0,Hans Kratz <hans@appfour.com>
|
|
140
|
-
siphasher,https://github.com/jedisct1/rust-siphash,MIT OR Apache-2.0,Frank Denis <github@pureftpd.org>
|
|
141
|
-
smallvec,https://github.com/servo/rust-smallvec,MIT OR Apache-2.0,The Servo Project Developers
|
|
142
|
-
smartstring,https://github.com/bodil/smartstring,MPL-2.0+,Bodil Stokke <bodil@bodil.org>
|
|
143
|
-
sourcemap,https://github.com/getsentry/rust-sourcemap,BSD-3-Clause,Sentry <hello@sentry.io>
|
|
144
|
-
st-map,https://github.com/dudykr/ddbase,Apache-2.0,강동윤 <kdy1997.dev@gmail.com>
|
|
145
|
-
stable_deref_trait,https://github.com/storyyeller/stable_deref_trait,MIT OR Apache-2.0,Robert Grosse <n210241048576@gmail.com>
|
|
146
|
-
stacker,https://github.com/rust-lang/stacker,MIT OR Apache-2.0,"Alex Crichton <alex@alexcrichton.com>, Simonas Kazlauskas <stacker@kazlauskas.me>"
|
|
147
|
-
static-map-macro,https://github.com/dudykr/ddbase,Apache-2.0,강동윤 <kdy1997.dev@gmail.com>
|
|
148
|
-
static_assertions,https://github.com/nvzqz/static-assertions-rs,MIT OR Apache-2.0,Nikolai Vazquez
|
|
149
|
-
swc,https://github.com/swc-project/swc,Apache-2.0,강동윤 <kdy1997.dev@gmail.com>
|
|
150
|
-
swc_core,https://github.com/swc-project/swc,Apache-2.0,"강동윤 <kdy1997.dev@gmail.com>, OJ Kwon <kwon.ohjoong@gmail.com>"
|
|
151
|
-
swc_eq_ignore_macros,https://github.com/swc-project/swc,Apache-2.0,강동윤 <kdy1@dudy.kr>
|
|
152
|
-
swc_node_comments,https://github.com/swc-project/swc,Apache-2.0,"강동윤 <kdy1997.dev@gmail.com>, Daniel Woznicki <daniel.woznicki@gmail.com>"
|
|
153
|
-
swc_plugin_macro,https://github.com/swc-project/swc,Apache-2.0,"강동윤 <kdy1997.dev@gmail.com>, OJ Kwon <kwon.ohjoong@gmail.com>"
|
|
154
|
-
swc_plugin_proxy,https://github.com/swc-project/swc,Apache-2.0,"강동윤 <kdy1997.dev@gmail.com>, OJ Kwon <kwon.ohjoong@gmail.com>"
|
|
155
|
-
syn,https://github.com/dtolnay/syn,MIT OR Apache-2.0,David Tolnay <dtolnay@gmail.com>
|
|
156
|
-
synstructure,https://github.com/mystor/synstructure,MIT,Nika Layzell <nika@thelayzells.com>
|
|
157
|
-
tap,https://github.com/myrrlyn/tap,MIT,"Elliott Linder <elliott.darfink@gmail.com>, myrrlyn <self@myrrlyn.dev>"
|
|
158
|
-
tempfile,https://github.com/Stebalien/tempfile,MIT OR Apache-2.0,"Steven Allen <steven@stebalien.com>, The Rust Project Developers, Ashley Mannix <ashleymannix@live.com.au>, Jason White <me@jasonwhite.io>"
|
|
159
|
-
termcolor,https://github.com/BurntSushi/termcolor,Unlicense OR MIT,Andrew Gallant <jamslam@gmail.com>
|
|
160
|
-
textwrap,https://github.com/mgeisler/textwrap,MIT,Martin Geisler <martin@geisler.net>
|
|
161
|
-
thiserror,https://github.com/dtolnay/thiserror,MIT OR Apache-2.0,David Tolnay <dtolnay@gmail.com>
|
|
162
|
-
thread_local,https://github.com/Amanieu/thread_local-rs,MIT OR Apache-2.0,Amanieu d'Antras <amanieu@gmail.com>
|
|
163
|
-
tinystr,https://github.com/unicode-org/icu4x,Unicode-3.0,The ICU4X Project Developers
|
|
164
|
-
tinyvec,https://github.com/Lokathor/tinyvec,Zlib OR Apache-2.0 OR MIT,Lokathor <zefria@gmail.com>
|
|
165
|
-
tinyvec_macros,https://github.com/Soveu/tinyvec_macros,MIT OR Apache-2.0 OR Zlib,Soveu <marx.tomasz@gmail.com>
|
|
166
|
-
tracing,https://github.com/tokio-rs/tracing,MIT,"Eliza Weisman <eliza@buoyant.io>, Tokio Contributors <team@tokio.rs>"
|
|
167
|
-
tracing-attributes,https://github.com/tokio-rs/tracing,MIT,"Tokio Contributors <team@tokio.rs>, Eliza Weisman <eliza@buoyant.io>, David Barsky <dbarsky@amazon.com>"
|
|
168
|
-
tracing-core,https://github.com/tokio-rs/tracing,MIT,Tokio Contributors <team@tokio.rs>
|
|
169
|
-
tracing-log,https://github.com/tokio-rs/tracing,MIT,Tokio Contributors <team@tokio.rs>
|
|
170
|
-
tracing-subscriber,https://github.com/tokio-rs/tracing,MIT,"Eliza Weisman <eliza@buoyant.io>, David Barsky <me@davidbarsky.com>, Tokio Contributors <team@tokio.rs>"
|
|
171
|
-
triomphe,https://github.com/Manishearth/triomphe,MIT OR Apache-2.0,"Manish Goregaokar <manishsmail@gmail.com>, The Servo Project Developers"
|
|
172
|
-
typed-arena,https://github.com/SimonSapin/rust-typed-arena,MIT,The typed-arena developers
|
|
173
|
-
typenum,https://github.com/paholg/typenum,MIT OR Apache-2.0,"Paho Lurie-Gregg <paho@paholg.com>, Andre Bogus <bogusandre@gmail.com>"
|
|
174
|
-
unicode-id,https://github.com/Boshen/unicode-id,MIT OR Apache-2.0,"Boshen <boshenc@gmail.com>, erick.tryzelaar <erick.tryzelaar@gmail.com>, kwantam <kwantam@gmail.com>, Manish Goregaokar <manishsmail@gmail.com>"
|
|
175
|
-
unicode-id-start,https://github.com/Boshen/unicode-id-start,(MIT OR Apache-2.0) AND Unicode-DFS-2016,"David Tolnay <dtolnay@gmail.com>, Boshen <boshenc@gmail.com>"
|
|
176
|
-
unicode-ident,https://github.com/dtolnay/unicode-ident,(MIT OR Apache-2.0) AND Unicode-3.0,David Tolnay <dtolnay@gmail.com>
|
|
177
|
-
unicode-linebreak,https://github.com/axelf4/unicode-linebreak,Apache-2.0,Axel Forsman <axelsfor@gmail.com>
|
|
178
|
-
unicode-width,https://github.com/unicode-rs/unicode-width,MIT OR Apache-2.0,"kwantam <kwantam@gmail.com>, Manish Goregaokar <manishsmail@gmail.com>"
|
|
179
|
-
url,https://github.com/servo/rust-url,MIT OR Apache-2.0,The rust-url developers
|
|
180
|
-
utf16_iter,https://github.com/hsivonen/utf16_iter,Apache-2.0 OR MIT,Henri Sivonen <hsivonen@hsivonen.fi>
|
|
181
|
-
utf8_iter,https://github.com/hsivonen/utf8_iter,Apache-2.0 OR MIT,Henri Sivonen <hsivonen@hsivonen.fi>
|
|
182
|
-
uuid,https://github.com/uuid-rs/uuid,Apache-2.0 OR MIT,"Ashley Mannix<ashleymannix@live.com.au>, Dylan DPC<dylan.dpc@gmail.com>, Hunar Roop Kahlon<hunar.roop@gmail.com>"
|
|
183
|
-
valuable,https://github.com/tokio-rs/valuable,MIT,The valuable Authors
|
|
184
|
-
wasi,https://github.com/bytecodealliance/wasi,Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT,The Cranelift Project Developers
|
|
185
|
-
wasi,https://github.com/bytecodealliance/wasi-rs,Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT,The Cranelift Project Developers
|
|
186
|
-
wasm-bindgen,https://github.com/rustwasm/wasm-bindgen,MIT OR Apache-2.0,The wasm-bindgen Developers
|
|
187
|
-
wasm-bindgen-backend,https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend,MIT OR Apache-2.0,The wasm-bindgen Developers
|
|
188
|
-
wasm-bindgen-macro,https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro,MIT OR Apache-2.0,The wasm-bindgen Developers
|
|
189
|
-
wasm-bindgen-macro-support,https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro-support,MIT OR Apache-2.0,The wasm-bindgen Developers
|
|
190
|
-
wasm-bindgen-shared,https://github.com/rustwasm/wasm-bindgen/tree/master/crates/shared,MIT OR Apache-2.0,The wasm-bindgen Developers
|
|
191
|
-
winapi,https://github.com/retep998/winapi-rs,MIT OR Apache-2.0,Peter Atashian <retep998@gmail.com>
|
|
192
|
-
winapi-util,https://github.com/BurntSushi/winapi-util,Unlicense OR MIT,Andrew Gallant <jamslam@gmail.com>
|
|
193
|
-
windows-core,https://github.com/microsoft/windows-rs,MIT OR Apache-2.0,Microsoft
|
|
194
|
-
windows-implement,https://github.com/microsoft/windows-rs,MIT OR Apache-2.0,Microsoft
|
|
195
|
-
windows-interface,https://github.com/microsoft/windows-rs,MIT OR Apache-2.0,Microsoft
|
|
196
|
-
windows-link,https://github.com/microsoft/windows-rs,MIT OR Apache-2.0,Microsoft
|
|
197
|
-
windows-result,https://github.com/microsoft/windows-rs,MIT OR Apache-2.0,Microsoft
|
|
198
|
-
windows-strings,https://github.com/microsoft/windows-rs,MIT OR Apache-2.0,Microsoft
|
|
199
|
-
windows-sys,https://github.com/microsoft/windows-rs,MIT OR Apache-2.0,Microsoft
|
|
200
|
-
windows-targets,https://github.com/microsoft/windows-rs,MIT OR Apache-2.0,Microsoft
|
|
201
|
-
windows_aarch64_gnullvm,https://github.com/microsoft/windows-rs,MIT OR Apache-2.0,Microsoft
|
|
202
|
-
windows_aarch64_msvc,https://github.com/microsoft/windows-rs,MIT OR Apache-2.0,Microsoft
|
|
203
|
-
windows_i686_gnu,https://github.com/microsoft/windows-rs,MIT OR Apache-2.0,Microsoft
|
|
204
|
-
windows_i686_gnullvm,https://github.com/microsoft/windows-rs,MIT OR Apache-2.0,Microsoft
|
|
205
|
-
windows_i686_msvc,https://github.com/microsoft/windows-rs,MIT OR Apache-2.0,Microsoft
|
|
206
|
-
windows_x86_64_gnu,https://github.com/microsoft/windows-rs,MIT OR Apache-2.0,Microsoft
|
|
207
|
-
windows_x86_64_gnullvm,https://github.com/microsoft/windows-rs,MIT OR Apache-2.0,Microsoft
|
|
208
|
-
windows_x86_64_msvc,https://github.com/microsoft/windows-rs,MIT OR Apache-2.0,Microsoft
|
|
209
|
-
winnow,https://github.com/winnow-rs/winnow,MIT,The winnow Authors
|
|
210
|
-
wit-bindgen-rt,https://github.com/bytecodealliance/wit-bindgen,Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT,The wit-bindgen-rt Authors
|
|
211
|
-
write16,https://github.com/hsivonen/write16,Apache-2.0 OR MIT,The write16 Authors
|
|
212
|
-
writeable,https://github.com/unicode-org/icu4x,Unicode-3.0,The ICU4X Project Developers
|
|
213
|
-
wyz,https://github.com/myrrlyn/wyz,MIT,myrrlyn <self@myrrlyn.dev>
|
|
214
|
-
yansi,https://github.com/SergioBenitez/yansi,MIT OR Apache-2.0,Sergio Benitez <sb@sergio.bz>
|
|
215
|
-
yoke,https://github.com/unicode-org/icu4x,Unicode-3.0,Manish Goregaokar <manishsmail@gmail.com>
|
|
216
|
-
yoke-derive,https://github.com/unicode-org/icu4x,Unicode-3.0,Manish Goregaokar <manishsmail@gmail.com>
|
|
217
|
-
zerocopy,https://github.com/google/zerocopy,BSD-2-Clause OR Apache-2.0 OR MIT,Joshua Liebow-Feeser <joshlf@google.com>
|
|
218
|
-
zerofrom,https://github.com/unicode-org/icu4x,Unicode-3.0,Manish Goregaokar <manishsmail@gmail.com>
|
|
219
|
-
zerofrom-derive,https://github.com/unicode-org/icu4x,Unicode-3.0,Manish Goregaokar <manishsmail@gmail.com>
|
|
220
|
-
zerovec,https://github.com/unicode-org/icu4x,Unicode-3.0,The ICU4X Project Developers
|
|
221
|
-
zerovec-derive,https://github.com/unicode-org/icu4x,Unicode-3.0,Manish Goregaokar <manishsmail@gmail.com>
|