gcsdk 1.0.3 → 1.0.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/README.md CHANGED
@@ -30,27 +30,18 @@ pnpm add gcsdk
30
30
  yarn add gcsdk
31
31
  ```
32
32
 
33
- **Note:** This package requires Rust to be installed on your system. The native module will be built automatically:
34
- - During installation (via `postinstall` script) for npm/yarn/pnpm
35
- - On first use (lazy build) if the postinstall script didn't run (e.g., with Bun)
36
-
37
- If you don't have Rust installed, you can install it from [rustup.rs](https://rustup.rs/).
33
+ **Note:** The native module is pre-built and included in the package. No Rust installation required!
38
34
 
39
35
  ### Troubleshooting
40
36
 
41
- If you encounter an error about the native module:
42
-
43
- 1. **Check if Rust is installed:**
44
- ```bash
45
- rustc --version
46
- ```
37
+ If you encounter an error about the native module not being found, ensure you're using the published version from npm. The native module is pre-built and included in the package.
47
38
 
48
- 2. **The module should build automatically on first use.** If it fails, manually build:
49
- ```bash
50
- cd node_modules/gcsdk/native
51
- npm install
52
- npm run build
53
- ```
39
+ If you're developing locally, you'll need Rust installed to build the native module:
40
+ ```bash
41
+ cd native
42
+ npm install
43
+ npm run build
44
+ ```
54
45
 
55
46
  ### From source
56
47
 
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AA0DA,UAAU,OAAO;IACf,IAAI,EAAE,MAAM,GAAG,WAAW,GAAG,QAAQ,CAAC;IACtC,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,qBAAa,OAAO;IAClB,OAAO,CAAC,aAAa,CAAkB;IACvC,OAAO,CAAC,YAAY,CAAuB;IAE3C,KAAK;IAMC,MAAM,CAAC,OAAO,EAAE,OAAO,EAAE,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC;IAY5D,KAAK,CAAC,UAAU,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM;IAMhD,YAAY,CAAC,UAAU,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM;IAKvD,UAAU;IAIV,QAAQ,CAAC,UAAU,EAAE,MAAM;IAMrB,UAAU;CAGjB"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAkBA,UAAU,OAAO;IACf,IAAI,EAAE,MAAM,GAAG,WAAW,GAAG,QAAQ,CAAC;IACtC,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,qBAAa,OAAO;IAClB,OAAO,CAAC,aAAa,CAAkB;IACvC,OAAO,CAAC,YAAY,CAAuB;IAE3C,KAAK;IAMC,MAAM,CAAC,OAAO,EAAE,OAAO,EAAE,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC;IAY5D,KAAK,CAAC,UAAU,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM;IAMhD,YAAY,CAAC,UAAU,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM;IAKvD,UAAU;IAIV,QAAQ,CAAC,UAAU,EAAE,MAAM;IAMrB,UAAU;CAGjB"}
package/dist/index.js CHANGED
@@ -3,53 +3,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.GitChat = void 0;
4
4
  const path = require("path");
5
5
  const fs = require("fs");
6
- const { execSync } = require("child_process");
7
6
  // Resolve the native module path
8
7
  // When compiled, __dirname will be the dist/ directory
9
8
  // So we need to go up one level to find native/
10
- const nativeDir = path.join(__dirname, "../native");
11
- const nativeModulePath = path.join(nativeDir, "index.node");
12
- // Build native module if it doesn't exist (lazy build for package managers that don't run postinstall)
9
+ const nativeModulePath = path.join(__dirname, "../native/index.node");
13
10
  if (!fs.existsSync(nativeModulePath)) {
14
- try {
15
- console.log("[gcsdk] Building native module (first time setup)...");
16
- const originalCwd = process.cwd();
17
- process.chdir(nativeDir);
18
- try {
19
- // Install dependencies if needed
20
- const nodeModulesPath = path.join(nativeDir, "node_modules");
21
- if (!fs.existsSync(nodeModulesPath) || !fs.existsSync(path.join(nodeModulesPath, "@neon-rs"))) {
22
- execSync("npm install", {
23
- stdio: "inherit",
24
- cwd: nativeDir
25
- });
26
- }
27
- // Build the native module
28
- execSync("npm run build", {
29
- stdio: "inherit",
30
- cwd: nativeDir
31
- });
32
- if (!fs.existsSync(nativeModulePath)) {
33
- throw new Error("Build completed but index.node not found");
34
- }
35
- console.log("[gcsdk] ✓ Native module ready");
36
- }
37
- finally {
38
- process.chdir(originalCwd);
39
- }
40
- }
41
- catch (error) {
42
- const errorMessage = error instanceof Error ? error.message : String(error);
43
- const fullErrorMessage = [
44
- `Failed to build native module automatically.`,
45
- ``,
46
- `Error: ${errorMessage}`,
47
- ``,
48
- `Please ensure Rust is installed: https://rustup.rs/`,
49
- `Then build manually: cd ${nativeDir} && npm install && npm run build`,
50
- ].join("\n");
51
- throw new Error(fullErrorMessage);
52
- }
11
+ throw new Error(`Native module not found at ${nativeModulePath}. ` +
12
+ `This package requires a pre-built native module. ` +
13
+ `Please ensure you're using the published version from npm.`);
53
14
  }
54
15
  const native = require(nativeModulePath);
55
16
  class GitChat {
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gcsdk",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "Git Chat SDK - A Git-like conversation SDK for managing chat histories with branching support",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -13,8 +13,10 @@
13
13
  },
14
14
  "files": [
15
15
  "dist",
16
- "native",
17
- "scripts",
16
+ "native/index.node",
17
+ "native/package.json",
18
+ "native/Cargo.toml",
19
+ "native/src/**",
18
20
  "README.md",
19
21
  "LICENSE"
20
22
  ],
@@ -22,8 +24,6 @@
22
24
  "build": "npm run build:ts && npm run build:native",
23
25
  "build:ts": "tsc",
24
26
  "build:native": "cd native && npm install && npm run build",
25
- "postinstall": "node scripts/postinstall.js",
26
- "install": "node scripts/postinstall.js",
27
27
  "prepublishOnly": "npm run build",
28
28
  "test": "bun test",
29
29
  "clean": "rm -rf dist"
package/native/Cargo.lock DELETED
@@ -1,570 +0,0 @@
1
- # This file is automatically @generated by Cargo.
2
- # It is not intended for manual editing.
3
- version = 4
4
-
5
- [[package]]
6
- name = "android_system_properties"
7
- version = "0.1.5"
8
- source = "registry+https://github.com/rust-lang/crates.io-index"
9
- checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
10
- dependencies = [
11
- "libc",
12
- ]
13
-
14
- [[package]]
15
- name = "ansi_term"
16
- version = "0.12.1"
17
- source = "registry+https://github.com/rust-lang/crates.io-index"
18
- checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
19
- dependencies = [
20
- "winapi",
21
- ]
22
-
23
- [[package]]
24
- name = "autocfg"
25
- version = "1.5.0"
26
- source = "registry+https://github.com/rust-lang/crates.io-index"
27
- checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
28
-
29
- [[package]]
30
- name = "block-buffer"
31
- version = "0.10.4"
32
- source = "registry+https://github.com/rust-lang/crates.io-index"
33
- checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
34
- dependencies = [
35
- "generic-array",
36
- ]
37
-
38
- [[package]]
39
- name = "bumpalo"
40
- version = "3.19.1"
41
- source = "registry+https://github.com/rust-lang/crates.io-index"
42
- checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
43
-
44
- [[package]]
45
- name = "cc"
46
- version = "1.2.52"
47
- source = "registry+https://github.com/rust-lang/crates.io-index"
48
- checksum = "cd4932aefd12402b36c60956a4fe0035421f544799057659ff86f923657aada3"
49
- dependencies = [
50
- "find-msvc-tools",
51
- "shlex",
52
- ]
53
-
54
- [[package]]
55
- name = "cfg-if"
56
- version = "1.0.4"
57
- source = "registry+https://github.com/rust-lang/crates.io-index"
58
- checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
59
-
60
- [[package]]
61
- name = "chrono"
62
- version = "0.4.42"
63
- source = "registry+https://github.com/rust-lang/crates.io-index"
64
- checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
65
- dependencies = [
66
- "iana-time-zone",
67
- "js-sys",
68
- "num-traits",
69
- "wasm-bindgen",
70
- "windows-link",
71
- ]
72
-
73
- [[package]]
74
- name = "core-foundation-sys"
75
- version = "0.8.7"
76
- source = "registry+https://github.com/rust-lang/crates.io-index"
77
- checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
78
-
79
- [[package]]
80
- name = "cpufeatures"
81
- version = "0.2.17"
82
- source = "registry+https://github.com/rust-lang/crates.io-index"
83
- checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
84
- dependencies = [
85
- "libc",
86
- ]
87
-
88
- [[package]]
89
- name = "crypto-common"
90
- version = "0.1.7"
91
- source = "registry+https://github.com/rust-lang/crates.io-index"
92
- checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
93
- dependencies = [
94
- "generic-array",
95
- "typenum",
96
- ]
97
-
98
- [[package]]
99
- name = "diffy"
100
- version = "0.1.1"
101
- source = "registry+https://github.com/rust-lang/crates.io-index"
102
- checksum = "925a541a0c52375c666c9b83f5f3ec226d54ae72daa136acbae7bb3289b54877"
103
- dependencies = [
104
- "ansi_term",
105
- ]
106
-
107
- [[package]]
108
- name = "digest"
109
- version = "0.10.7"
110
- source = "registry+https://github.com/rust-lang/crates.io-index"
111
- checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
112
- dependencies = [
113
- "block-buffer",
114
- "crypto-common",
115
- ]
116
-
117
- [[package]]
118
- name = "either"
119
- version = "1.15.0"
120
- source = "registry+https://github.com/rust-lang/crates.io-index"
121
- checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
122
-
123
- [[package]]
124
- name = "find-msvc-tools"
125
- version = "0.1.7"
126
- source = "registry+https://github.com/rust-lang/crates.io-index"
127
- checksum = "f449e6c6c08c865631d4890cfacf252b3d396c9bcc83adb6623cdb02a8336c41"
128
-
129
- [[package]]
130
- name = "generic-array"
131
- version = "0.14.7"
132
- source = "registry+https://github.com/rust-lang/crates.io-index"
133
- checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
134
- dependencies = [
135
- "typenum",
136
- "version_check",
137
- ]
138
-
139
- [[package]]
140
- name = "getrandom"
141
- version = "0.2.16"
142
- source = "registry+https://github.com/rust-lang/crates.io-index"
143
- checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
144
- dependencies = [
145
- "cfg-if",
146
- "libc",
147
- "wasi",
148
- ]
149
-
150
- [[package]]
151
- name = "iana-time-zone"
152
- version = "0.1.64"
153
- source = "registry+https://github.com/rust-lang/crates.io-index"
154
- checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
155
- dependencies = [
156
- "android_system_properties",
157
- "core-foundation-sys",
158
- "iana-time-zone-haiku",
159
- "js-sys",
160
- "log",
161
- "wasm-bindgen",
162
- "windows-core",
163
- ]
164
-
165
- [[package]]
166
- name = "iana-time-zone-haiku"
167
- version = "0.1.2"
168
- source = "registry+https://github.com/rust-lang/crates.io-index"
169
- checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
170
- dependencies = [
171
- "cc",
172
- ]
173
-
174
- [[package]]
175
- name = "itoa"
176
- version = "1.0.17"
177
- source = "registry+https://github.com/rust-lang/crates.io-index"
178
- checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
179
-
180
- [[package]]
181
- name = "js-sys"
182
- version = "0.3.83"
183
- source = "registry+https://github.com/rust-lang/crates.io-index"
184
- checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
185
- dependencies = [
186
- "once_cell",
187
- "wasm-bindgen",
188
- ]
189
-
190
- [[package]]
191
- name = "libc"
192
- version = "0.2.180"
193
- source = "registry+https://github.com/rust-lang/crates.io-index"
194
- checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
195
-
196
- [[package]]
197
- name = "libloading"
198
- version = "0.8.9"
199
- source = "registry+https://github.com/rust-lang/crates.io-index"
200
- checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
201
- dependencies = [
202
- "cfg-if",
203
- "windows-link",
204
- ]
205
-
206
- [[package]]
207
- name = "linkme"
208
- version = "0.3.35"
209
- source = "registry+https://github.com/rust-lang/crates.io-index"
210
- checksum = "5e3283ed2d0e50c06dd8602e0ab319bb048b6325d0bba739db64ed8205179898"
211
- dependencies = [
212
- "linkme-impl",
213
- ]
214
-
215
- [[package]]
216
- name = "linkme-impl"
217
- version = "0.3.35"
218
- source = "registry+https://github.com/rust-lang/crates.io-index"
219
- checksum = "e5cec0ec4228b4853bb129c84dbf093a27e6c7a20526da046defc334a1b017f7"
220
- dependencies = [
221
- "proc-macro2",
222
- "quote",
223
- "syn",
224
- ]
225
-
226
- [[package]]
227
- name = "log"
228
- version = "0.4.29"
229
- source = "registry+https://github.com/rust-lang/crates.io-index"
230
- checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
231
-
232
- [[package]]
233
- name = "memchr"
234
- version = "2.7.6"
235
- source = "registry+https://github.com/rust-lang/crates.io-index"
236
- checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
237
-
238
- [[package]]
239
- name = "native"
240
- version = "0.1.0"
241
- dependencies = [
242
- "chrono",
243
- "diffy",
244
- "neon",
245
- "once_cell",
246
- "serde",
247
- "serde_json",
248
- "sha2",
249
- "termtree",
250
- ]
251
-
252
- [[package]]
253
- name = "neon"
254
- version = "1.1.1"
255
- source = "registry+https://github.com/rust-lang/crates.io-index"
256
- checksum = "74c1d298c79e60a3f5a1e638ace1f9c1229d2a97bd3a9e40a63b67c8efa0f1e1"
257
- dependencies = [
258
- "either",
259
- "getrandom",
260
- "libloading",
261
- "linkme",
262
- "neon-macros",
263
- "once_cell",
264
- "semver",
265
- "send_wrapper",
266
- "serde",
267
- "serde_json",
268
- "smallvec",
269
- ]
270
-
271
- [[package]]
272
- name = "neon-macros"
273
- version = "1.1.1"
274
- source = "registry+https://github.com/rust-lang/crates.io-index"
275
- checksum = "c39e43767817fc963f90f400600967a2b2403602c6440685d09a6bc4e02b70b1"
276
- dependencies = [
277
- "proc-macro2",
278
- "quote",
279
- "syn",
280
- ]
281
-
282
- [[package]]
283
- name = "num-traits"
284
- version = "0.2.19"
285
- source = "registry+https://github.com/rust-lang/crates.io-index"
286
- checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
287
- dependencies = [
288
- "autocfg",
289
- ]
290
-
291
- [[package]]
292
- name = "once_cell"
293
- version = "1.21.3"
294
- source = "registry+https://github.com/rust-lang/crates.io-index"
295
- checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
296
-
297
- [[package]]
298
- name = "proc-macro2"
299
- version = "1.0.105"
300
- source = "registry+https://github.com/rust-lang/crates.io-index"
301
- checksum = "535d180e0ecab6268a3e718bb9fd44db66bbbc256257165fc699dadf70d16fe7"
302
- dependencies = [
303
- "unicode-ident",
304
- ]
305
-
306
- [[package]]
307
- name = "quote"
308
- version = "1.0.43"
309
- source = "registry+https://github.com/rust-lang/crates.io-index"
310
- checksum = "dc74d9a594b72ae6656596548f56f667211f8a97b3d4c3d467150794690dc40a"
311
- dependencies = [
312
- "proc-macro2",
313
- ]
314
-
315
- [[package]]
316
- name = "rustversion"
317
- version = "1.0.22"
318
- source = "registry+https://github.com/rust-lang/crates.io-index"
319
- checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
320
-
321
- [[package]]
322
- name = "semver"
323
- version = "1.0.27"
324
- source = "registry+https://github.com/rust-lang/crates.io-index"
325
- checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
326
-
327
- [[package]]
328
- name = "send_wrapper"
329
- version = "0.6.0"
330
- source = "registry+https://github.com/rust-lang/crates.io-index"
331
- checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73"
332
-
333
- [[package]]
334
- name = "serde"
335
- version = "1.0.228"
336
- source = "registry+https://github.com/rust-lang/crates.io-index"
337
- checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
338
- dependencies = [
339
- "serde_core",
340
- "serde_derive",
341
- ]
342
-
343
- [[package]]
344
- name = "serde_core"
345
- version = "1.0.228"
346
- source = "registry+https://github.com/rust-lang/crates.io-index"
347
- checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
348
- dependencies = [
349
- "serde_derive",
350
- ]
351
-
352
- [[package]]
353
- name = "serde_derive"
354
- version = "1.0.228"
355
- source = "registry+https://github.com/rust-lang/crates.io-index"
356
- checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
357
- dependencies = [
358
- "proc-macro2",
359
- "quote",
360
- "syn",
361
- ]
362
-
363
- [[package]]
364
- name = "serde_json"
365
- version = "1.0.149"
366
- source = "registry+https://github.com/rust-lang/crates.io-index"
367
- checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
368
- dependencies = [
369
- "itoa",
370
- "memchr",
371
- "serde",
372
- "serde_core",
373
- "zmij",
374
- ]
375
-
376
- [[package]]
377
- name = "sha2"
378
- version = "0.10.9"
379
- source = "registry+https://github.com/rust-lang/crates.io-index"
380
- checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
381
- dependencies = [
382
- "cfg-if",
383
- "cpufeatures",
384
- "digest",
385
- ]
386
-
387
- [[package]]
388
- name = "shlex"
389
- version = "1.3.0"
390
- source = "registry+https://github.com/rust-lang/crates.io-index"
391
- checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
392
-
393
- [[package]]
394
- name = "smallvec"
395
- version = "1.15.1"
396
- source = "registry+https://github.com/rust-lang/crates.io-index"
397
- checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
398
-
399
- [[package]]
400
- name = "syn"
401
- version = "2.0.114"
402
- source = "registry+https://github.com/rust-lang/crates.io-index"
403
- checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
404
- dependencies = [
405
- "proc-macro2",
406
- "quote",
407
- "unicode-ident",
408
- ]
409
-
410
- [[package]]
411
- name = "termtree"
412
- version = "0.5.1"
413
- source = "registry+https://github.com/rust-lang/crates.io-index"
414
- checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
415
-
416
- [[package]]
417
- name = "typenum"
418
- version = "1.19.0"
419
- source = "registry+https://github.com/rust-lang/crates.io-index"
420
- checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
421
-
422
- [[package]]
423
- name = "unicode-ident"
424
- version = "1.0.22"
425
- source = "registry+https://github.com/rust-lang/crates.io-index"
426
- checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
427
-
428
- [[package]]
429
- name = "version_check"
430
- version = "0.9.5"
431
- source = "registry+https://github.com/rust-lang/crates.io-index"
432
- checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
433
-
434
- [[package]]
435
- name = "wasi"
436
- version = "0.11.1+wasi-snapshot-preview1"
437
- source = "registry+https://github.com/rust-lang/crates.io-index"
438
- checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
439
-
440
- [[package]]
441
- name = "wasm-bindgen"
442
- version = "0.2.106"
443
- source = "registry+https://github.com/rust-lang/crates.io-index"
444
- checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
445
- dependencies = [
446
- "cfg-if",
447
- "once_cell",
448
- "rustversion",
449
- "wasm-bindgen-macro",
450
- "wasm-bindgen-shared",
451
- ]
452
-
453
- [[package]]
454
- name = "wasm-bindgen-macro"
455
- version = "0.2.106"
456
- source = "registry+https://github.com/rust-lang/crates.io-index"
457
- checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
458
- dependencies = [
459
- "quote",
460
- "wasm-bindgen-macro-support",
461
- ]
462
-
463
- [[package]]
464
- name = "wasm-bindgen-macro-support"
465
- version = "0.2.106"
466
- source = "registry+https://github.com/rust-lang/crates.io-index"
467
- checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
468
- dependencies = [
469
- "bumpalo",
470
- "proc-macro2",
471
- "quote",
472
- "syn",
473
- "wasm-bindgen-shared",
474
- ]
475
-
476
- [[package]]
477
- name = "wasm-bindgen-shared"
478
- version = "0.2.106"
479
- source = "registry+https://github.com/rust-lang/crates.io-index"
480
- checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
481
- dependencies = [
482
- "unicode-ident",
483
- ]
484
-
485
- [[package]]
486
- name = "winapi"
487
- version = "0.3.9"
488
- source = "registry+https://github.com/rust-lang/crates.io-index"
489
- checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
490
- dependencies = [
491
- "winapi-i686-pc-windows-gnu",
492
- "winapi-x86_64-pc-windows-gnu",
493
- ]
494
-
495
- [[package]]
496
- name = "winapi-i686-pc-windows-gnu"
497
- version = "0.4.0"
498
- source = "registry+https://github.com/rust-lang/crates.io-index"
499
- checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
500
-
501
- [[package]]
502
- name = "winapi-x86_64-pc-windows-gnu"
503
- version = "0.4.0"
504
- source = "registry+https://github.com/rust-lang/crates.io-index"
505
- checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
506
-
507
- [[package]]
508
- name = "windows-core"
509
- version = "0.62.2"
510
- source = "registry+https://github.com/rust-lang/crates.io-index"
511
- checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
512
- dependencies = [
513
- "windows-implement",
514
- "windows-interface",
515
- "windows-link",
516
- "windows-result",
517
- "windows-strings",
518
- ]
519
-
520
- [[package]]
521
- name = "windows-implement"
522
- version = "0.60.2"
523
- source = "registry+https://github.com/rust-lang/crates.io-index"
524
- checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
525
- dependencies = [
526
- "proc-macro2",
527
- "quote",
528
- "syn",
529
- ]
530
-
531
- [[package]]
532
- name = "windows-interface"
533
- version = "0.59.3"
534
- source = "registry+https://github.com/rust-lang/crates.io-index"
535
- checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
536
- dependencies = [
537
- "proc-macro2",
538
- "quote",
539
- "syn",
540
- ]
541
-
542
- [[package]]
543
- name = "windows-link"
544
- version = "0.2.1"
545
- source = "registry+https://github.com/rust-lang/crates.io-index"
546
- checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
547
-
548
- [[package]]
549
- name = "windows-result"
550
- version = "0.4.1"
551
- source = "registry+https://github.com/rust-lang/crates.io-index"
552
- checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
553
- dependencies = [
554
- "windows-link",
555
- ]
556
-
557
- [[package]]
558
- name = "windows-strings"
559
- version = "0.5.1"
560
- source = "registry+https://github.com/rust-lang/crates.io-index"
561
- checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
562
- dependencies = [
563
- "windows-link",
564
- ]
565
-
566
- [[package]]
567
- name = "zmij"
568
- version = "1.0.12"
569
- source = "registry+https://github.com/rust-lang/crates.io-index"
570
- checksum = "2fc5a66a20078bf1251bde995aa2fdcc4b800c70b5d92dd2c62abc5c60f679f8"
package/native/cargo.log DELETED
@@ -1,66 +0,0 @@
1
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.105","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.105/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.105/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":["default","proc-macro"],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/build/proc-macro2-f79a832cba0ad6de/build-script-build"],"executable":null,"fresh":true}
2
- {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.105","linked_libs":[],"linked_paths":[],"cfgs":["wrap_proc_macro","proc_macro_span_location","proc_macro_span_file"],"env":[],"out_dir":"/Volumes/WD_2TB/warpy/gcsdk/native/target/release/build/proc-macro2-65c128645d12b768/out"}
3
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.22","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.22/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_ident","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.22/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":[],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libunicode_ident-5df161d40d0e34ab.rlib","/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libunicode_ident-5df161d40d0e34ab.rmeta"],"executable":null,"fresh":true}
4
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#quote@1.0.43","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.43/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.43/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":["default","proc-macro"],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/build/quote-6f0cbc26b8dfeab4/build-script-build"],"executable":null,"fresh":true}
5
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#typenum@1.19.0","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":[],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/build/typenum-528ea22ea270d0bb/build-script-build"],"executable":null,"fresh":true}
6
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"version_check","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":[],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libversion_check-1fd17222472c96bd.rlib","/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libversion_check-1fd17222472c96bd.rmeta"],"executable":null,"fresh":true}
7
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#libc@0.2.180","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.180/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.180/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":[],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/build/libc-88f89d79ae9fe8a8/build-script-build"],"executable":null,"fresh":true}
8
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":["result","std"],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/build/serde_core-27c885df4f22c6e7/build-script-build"],"executable":null,"fresh":true}
9
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#linkme-impl@0.3.35","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linkme-impl-0.3.35/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linkme-impl-0.3.35/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":[],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/build/linkme-impl-43a3f3ee7e2bc43b/build-script-build"],"executable":null,"fresh":true}
10
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zmij@1.0.12","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.12/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.12/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":[],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/build/zmij-4c58c77086b2ed47/build-script-build"],"executable":null,"fresh":true}
11
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#autocfg@1.5.0","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"autocfg","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":[],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libautocfg-ec849e49b9b0ef7b.rlib","/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libautocfg-ec849e49b9b0ef7b.rmeta"],"executable":null,"fresh":true}
12
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.105","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.105/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"proc_macro2","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.105/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":["default","proc-macro"],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libproc_macro2-29913e913d54c2d1.rlib","/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libproc_macro2-29913e913d54c2d1.rmeta"],"executable":null,"fresh":true}
13
- {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#quote@1.0.43","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/Volumes/WD_2TB/warpy/gcsdk/native/target/release/build/quote-175db2ea4cc11be7/out"}
14
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/build.rs","edition":"2015","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":["more_lengths"],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/build/generic-array-97efc4b88dff31d8/build-script-build"],"executable":null,"fresh":true}
15
- {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#typenum@1.19.0","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/Volumes/WD_2TB/warpy/gcsdk/native/target/release/build/typenum-232c9c4bca2a3260/out"}
16
- {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#libc@0.2.180","linked_libs":[],"linked_paths":[],"cfgs":["freebsd12"],"env":[],"out_dir":"/Volumes/WD_2TB/warpy/gcsdk/native/target/release/build/libc-8886e36947ca5790/out"}
17
- {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/Volumes/WD_2TB/warpy/gcsdk/native/target/release/build/serde_core-a97c0dd2017c026d/out"}
18
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cfg_if","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"3","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":[],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libcfg_if-2afb9b8d942eb8a9.rlib","/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libcfg_if-2afb9b8d942eb8a9.rmeta"],"executable":null,"fresh":true}
19
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":[],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/build/num-traits-5d15125a087d0bab/build-script-build"],"executable":null,"fresh":true}
20
- {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#zmij@1.0.12","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/Volumes/WD_2TB/warpy/gcsdk/native/target/release/build/zmij-4d97bd3ae15a93e3/out"}
21
- {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#linkme-impl@0.3.35","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/Volumes/WD_2TB/warpy/gcsdk/native/target/release/build/linkme-impl-f25f4ce7b32f8c8e/out"}
22
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#quote@1.0.43","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.43/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"quote","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.43/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":["default","proc-macro"],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libquote-388ceb687d72778c.rlib","/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libquote-388ceb687d72778c.rmeta"],"executable":null,"fresh":true}
23
- {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7","linked_libs":[],"linked_paths":[],"cfgs":["relaxed_coherence"],"env":[],"out_dir":"/Volumes/WD_2TB/warpy/gcsdk/native/target/release/build/generic-array-2b123eb98210124f/out"}
24
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#typenum@1.19.0","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"typenum","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"3","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":[],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libtypenum-b05ab838a134a93c.rlib","/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libtypenum-b05ab838a134a93c.rmeta"],"executable":null,"fresh":true}
25
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#libc@0.2.180","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.180/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"libc","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.180/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"3","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":[],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/liblibc-d04ace407aea2550.rlib","/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/liblibc-d04ace407aea2550.rmeta"],"executable":null,"fresh":true}
26
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_core","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"3","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":["result","std"],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libserde_core-ea18b112cbbcd814.rlib","/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libserde_core-ea18b112cbbcd814.rmeta"],"executable":null,"fresh":true}
27
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#linkme@0.3.35","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linkme-0.3.35/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linkme-0.3.35/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":[],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/build/linkme-b3f1056ef074a4c5/build-script-build"],"executable":null,"fresh":true}
28
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":["default","std"],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/build/serde_json-9b4e0a2e8aa29f98/build-script-build"],"executable":null,"fresh":true}
29
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":["default","derive","serde_derive","std"],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/build/serde-d18134d07e92cc8d/build-script-build"],"executable":null,"fresh":true}
30
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zmij@1.0.12","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.12/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zmij","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.12/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"3","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":[],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libzmij-8f0e744f2e198126.rlib","/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libzmij-8f0e744f2e198126.rmeta"],"executable":null,"fresh":true}
31
- {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19","linked_libs":[],"linked_paths":[],"cfgs":["has_total_cmp"],"env":[],"out_dir":"/Volumes/WD_2TB/warpy/gcsdk/native/target/release/build/num-traits-7b2f8e1c3e116cc3/out"}
32
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.114/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"syn","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.114/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":["clone-impls","default","derive","full","parsing","printing","proc-macro"],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libsyn-b1396bf9c7b03869.rlib","/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libsyn-b1396bf9c7b03869.rmeta"],"executable":null,"fresh":true}
33
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"generic_array","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"3","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":["more_lengths"],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libgeneric_array-a9c4e74d276fb55d.rlib","/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libgeneric_array-a9c4e74d276fb55d.rmeta"],"executable":null,"fresh":true}
34
- {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149","linked_libs":[],"linked_paths":[],"cfgs":["fast_arithmetic=\"64\""],"env":[],"out_dir":"/Volumes/WD_2TB/warpy/gcsdk/native/target/release/build/serde_json-d8a1cad56deceee0/out"}
35
- {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#linkme@0.3.35","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/Volumes/WD_2TB/warpy/gcsdk/native/target/release/build/linkme-bc8ed0d75ef5666f/out"}
36
- {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228","linked_libs":[],"linked_paths":[],"cfgs":["if_docsrs_then_no_serde_core"],"env":[],"out_dir":"/Volumes/WD_2TB/warpy/gcsdk/native/target/release/build/serde-4135d59f04efbdca/out"}
37
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#core-foundation-sys@0.8.7","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"core_foundation_sys","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"3","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":["default","link"],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libcore_foundation_sys-ffad18dfc997bb08.rlib","/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libcore_foundation_sys-ffad18dfc997bb08.rmeta"],"executable":null,"fresh":true}
38
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.17","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.17/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"itoa","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.17/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"3","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":[],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libitoa-213357d5aa33c801.rlib","/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libitoa-213357d5aa33c801.rmeta"],"executable":null,"fresh":true}
39
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"memchr","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"3","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":["alloc","std"],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libmemchr-f6381fc56121f377.rlib","/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libmemchr-f6381fc56121f377.rmeta"],"executable":null,"fresh":true}
40
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"num_traits","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"3","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":[],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libnum_traits-d57748c236da7329.rlib","/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libnum_traits-d57748c236da7329.rmeta"],"executable":null,"fresh":true}
41
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"getrandom","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"3","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":[],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libgetrandom-9d7e3908463fb754.rlib","/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libgetrandom-9d7e3908463fb754.rmeta"],"executable":null,"fresh":true}
42
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.7","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crypto-common-0.1.7/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crypto_common","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crypto-common-0.1.7/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"3","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":["std"],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libcrypto_common-95e555af8fe77221.rlib","/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libcrypto_common-95e555af8fe77221.rmeta"],"executable":null,"fresh":true}
43
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"block_buffer","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"3","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":[],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libblock_buffer-b9d40c1a46e29545.rlib","/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libblock_buffer-b9d40c1a46e29545.rmeta"],"executable":null,"fresh":true}
44
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.228","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"serde_derive","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":["default"],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libserde_derive-831090f57cf75755.dylib"],"executable":null,"fresh":true}
45
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#linkme-impl@0.3.35","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linkme-impl-0.3.35/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"linkme_impl","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linkme-impl-0.3.35/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":[],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/liblinkme_impl-c33a1c1a4eba462c.dylib"],"executable":null,"fresh":true}
46
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#iana-time-zone@0.1.64","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iana-time-zone-0.1.64/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"iana_time_zone","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iana-time-zone-0.1.64/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"3","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":["fallback"],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libiana_time_zone-7ba747b43e7d873d.rlib","/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libiana_time_zone-7ba747b43e7d873d.rmeta"],"executable":null,"fresh":true}
47
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#neon-macros@1.1.1","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/neon-macros-1.1.1/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"neon_macros","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/neon-macros-1.1.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":[],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libneon_macros-e867b248f0937c54.dylib"],"executable":null,"fresh":true}
48
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_json","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"3","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":["default","std"],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libserde_json-a5ca05e73e40e8c3.rlib","/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libserde_json-a5ca05e73e40e8c3.rmeta"],"executable":null,"fresh":true}
49
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cpufeatures","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"3","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":[],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libcpufeatures-bf261dcbc4e14576.rlib","/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libcpufeatures-bf261dcbc4e14576.rmeta"],"executable":null,"fresh":true}
50
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#libloading@0.8.9","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"libloading","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"3","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":[],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/liblibloading-f22bb41a67957d4d.rlib","/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/liblibloading-f22bb41a67957d4d.rmeta"],"executable":null,"fresh":true}
51
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#either@1.15.0","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.15.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"either","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.15.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"3","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":["default","std"],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libeither-a26ce754463eb70b.rlib","/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libeither-a26ce754463eb70b.rmeta"],"executable":null,"fresh":true}
52
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#linkme@0.3.35","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linkme-0.3.35/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"linkme","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linkme-0.3.35/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"3","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":[],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/liblinkme-d2fb6ce4e288bfb8.rlib","/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/liblinkme-d2fb6ce4e288bfb8.rmeta"],"executable":null,"fresh":true}
53
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"digest","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"3","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":["alloc","block-buffer","core-api","default","std"],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libdigest-1cd247e87d5fc081.rlib","/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libdigest-1cd247e87d5fc081.rmeta"],"executable":null,"fresh":true}
54
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"3","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":["default","derive","serde_derive","std"],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libserde-e6f9414b8dc4b817.rlib","/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libserde-e6f9414b8dc4b817.rmeta"],"executable":null,"fresh":true}
55
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#semver@1.0.27","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.27/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"semver","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.27/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"3","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":["default","std"],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libsemver-c79c0cb5fc0eb8e9.rlib","/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libsemver-c79c0cb5fc0eb8e9.rmeta"],"executable":null,"fresh":true}
56
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ansi_term@0.12.1","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ansi_term-0.12.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ansi_term","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ansi_term-0.12.1/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"3","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":[],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libansi_term-d14b66e2ccc49b75.rlib","/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libansi_term-d14b66e2ccc49b75.rmeta"],"executable":null,"fresh":true}
57
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"once_cell","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"3","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":["alloc","default","race","std"],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libonce_cell-40215868d9ef2577.rlib","/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libonce_cell-40215868d9ef2577.rmeta"],"executable":null,"fresh":true}
58
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"smallvec","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"3","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":[],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libsmallvec-7aec5460a77847f7.rlib","/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libsmallvec-7aec5460a77847f7.rmeta"],"executable":null,"fresh":true}
59
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#send_wrapper@0.6.0","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/send_wrapper-0.6.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"send_wrapper","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/send_wrapper-0.6.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"3","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":[],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libsend_wrapper-4698e22199ff4f5f.rlib","/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libsend_wrapper-4698e22199ff4f5f.rmeta"],"executable":null,"fresh":true}
60
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.42","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.42/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"chrono","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.42/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"3","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":["alloc","clock","default","iana-time-zone","js-sys","now","oldtime","std","wasm-bindgen","wasmbind","winapi","windows-link"],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libchrono-0854e128533003a7.rlib","/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libchrono-0854e128533003a7.rmeta"],"executable":null,"fresh":true}
61
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#termtree@0.5.1","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/termtree-0.5.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"termtree","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/termtree-0.5.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"3","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":[],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libtermtree-1588140ee2827b16.rlib","/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libtermtree-1588140ee2827b16.rmeta"],"executable":null,"fresh":true}
62
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"sha2","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"3","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":["default","std"],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libsha2-69e6f2153ae55040.rlib","/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libsha2-69e6f2153ae55040.rmeta"],"executable":null,"fresh":true}
63
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#diffy@0.1.1","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/diffy-0.1.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"diffy","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/diffy-0.1.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"3","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":[],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libdiffy-abf5dae486dc55c2.rlib","/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libdiffy-abf5dae486dc55c2.rmeta"],"executable":null,"fresh":true}
64
- {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#neon@1.1.1","manifest_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/neon-1.1.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"neon","src_path":"/Users/lucasoliveira/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/neon-1.1.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"3","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":["default","getrandom","napi-1","napi-2","napi-3","napi-4","napi-5","napi-6","napi-7","napi-8","serde"],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libneon-d99b5f03932e665e.rlib","/Volumes/WD_2TB/warpy/gcsdk/native/target/release/deps/libneon-d99b5f03932e665e.rmeta"],"executable":null,"fresh":true}
65
- {"reason":"compiler-artifact","package_id":"path+file:///Volumes/WD_2TB/warpy/gcsdk/native#0.1.0","manifest_path":"/Volumes/WD_2TB/warpy/gcsdk/native/Cargo.toml","target":{"kind":["cdylib"],"crate_types":["cdylib"],"name":"native","src_path":"/Volumes/WD_2TB/warpy/gcsdk/native/src/lib.rs","edition":"2024","doc":true,"doctest":false,"test":true},"profile":{"opt_level":"3","debuginfo":0,"debug_assertions":false,"overflow_checks":false,"test":false},"features":[],"filenames":["/Volumes/WD_2TB/warpy/gcsdk/native/target/release/libnative.dylib"],"executable":null,"fresh":true}
66
- {"reason":"build-finished","success":true}
@@ -1,178 +0,0 @@
1
- {
2
- "name": "native",
3
- "version": "0.1.0",
4
- "lockfileVersion": 3,
5
- "requires": true,
6
- "packages": {
7
- "": {
8
- "name": "native",
9
- "version": "0.1.0",
10
- "license": "Apache-2.0",
11
- "devDependencies": {
12
- "@neon-rs/cli": "0.1.82"
13
- }
14
- },
15
- "node_modules/@cargo-messages/android-arm-eabi": {
16
- "version": "0.1.81",
17
- "resolved": "https://registry.npmjs.org/@cargo-messages/android-arm-eabi/-/android-arm-eabi-0.1.81.tgz",
18
- "integrity": "sha512-cpRbgb56e9LmAj96Tixtz9/bTlaJAeplWNNv4obu+eqQyZd3ZjX04TJd9fM1bjHDGVyR9GTVlgBsbQEntIGkwg==",
19
- "cpu": [
20
- "arm"
21
- ],
22
- "dev": true,
23
- "license": "MIT",
24
- "optional": true,
25
- "os": [
26
- "android"
27
- ]
28
- },
29
- "node_modules/@cargo-messages/darwin-arm64": {
30
- "version": "0.1.81",
31
- "resolved": "https://registry.npmjs.org/@cargo-messages/darwin-arm64/-/darwin-arm64-0.1.81.tgz",
32
- "integrity": "sha512-OwGqsw+tbJx37a/vH4T8R9qkrrFYoTIOnckbA9+MhQodE2FSWyk3HvLh+z8jjl+QZa1RSOU9Ax6gt/46h0BiTg==",
33
- "cpu": [
34
- "arm64"
35
- ],
36
- "dev": true,
37
- "license": "MIT",
38
- "optional": true,
39
- "os": [
40
- "darwin"
41
- ]
42
- },
43
- "node_modules/@cargo-messages/darwin-x64": {
44
- "version": "0.1.81",
45
- "resolved": "https://registry.npmjs.org/@cargo-messages/darwin-x64/-/darwin-x64-0.1.81.tgz",
46
- "integrity": "sha512-Iu761bPk25Ce6yUdDCjjeVuT8/xbBmczyaNB7oYBmAZEE5rshvCJ42TqSShYYP+S7pKkN42nBhkFooaZrqaz9g==",
47
- "cpu": [
48
- "x64"
49
- ],
50
- "dev": true,
51
- "license": "MIT",
52
- "optional": true,
53
- "os": [
54
- "darwin"
55
- ]
56
- },
57
- "node_modules/@cargo-messages/linux-arm-gnueabihf": {
58
- "version": "0.1.81",
59
- "resolved": "https://registry.npmjs.org/@cargo-messages/linux-arm-gnueabihf/-/linux-arm-gnueabihf-0.1.81.tgz",
60
- "integrity": "sha512-iIuy7KTJAEhbiqlIlcxQOdW6opI6M9LXlgd/jdsHbP2FjmTyhTLnd3JCJ6JeAeidwknCDs+CFlaVmPxTKSytsg==",
61
- "cpu": [
62
- "arm"
63
- ],
64
- "dev": true,
65
- "license": "MIT",
66
- "optional": true,
67
- "os": [
68
- "linux"
69
- ]
70
- },
71
- "node_modules/@cargo-messages/linux-arm64-gnu": {
72
- "version": "0.1.81",
73
- "resolved": "https://registry.npmjs.org/@cargo-messages/linux-arm64-gnu/-/linux-arm64-gnu-0.1.81.tgz",
74
- "integrity": "sha512-QPQRsHj9m/9ga8wRBlLh8t2AXyr40+/H55FIKVj7zIjV++waY/TbSTPofDZQhMycd5VSGLKztfhahiCO7c/RAQ==",
75
- "cpu": [
76
- "arm64"
77
- ],
78
- "dev": true,
79
- "license": "MIT",
80
- "optional": true,
81
- "os": [
82
- "linux"
83
- ]
84
- },
85
- "node_modules/@cargo-messages/linux-arm64-musl": {
86
- "version": "0.1.81",
87
- "resolved": "https://registry.npmjs.org/@cargo-messages/linux-arm64-musl/-/linux-arm64-musl-0.1.81.tgz",
88
- "integrity": "sha512-9O0ATesIOjDTz2L01OtlGHYwP86I31/mzXMC+ryQkzbbIKj7KUiSqmEc29I14I517UYO8/sMeow6q6MVBpehlA==",
89
- "cpu": [
90
- "arm64"
91
- ],
92
- "dev": true,
93
- "license": "MIT",
94
- "optional": true,
95
- "os": [
96
- "linux"
97
- ]
98
- },
99
- "node_modules/@cargo-messages/linux-x64-gnu": {
100
- "version": "0.1.81",
101
- "resolved": "https://registry.npmjs.org/@cargo-messages/linux-x64-gnu/-/linux-x64-gnu-0.1.81.tgz",
102
- "integrity": "sha512-wEFYxCdtHNiEvp5KEg17CfRCUdfRTtkL+1GASROyvYEUV6DQf6TXxfHuuWg2xlVxh5fqiTGFSRfiqFrCDL/xrw==",
103
- "cpu": [
104
- "x64"
105
- ],
106
- "dev": true,
107
- "license": "MIT",
108
- "optional": true,
109
- "os": [
110
- "linux"
111
- ]
112
- },
113
- "node_modules/@cargo-messages/linux-x64-musl": {
114
- "version": "0.1.81",
115
- "resolved": "https://registry.npmjs.org/@cargo-messages/linux-x64-musl/-/linux-x64-musl-0.1.81.tgz",
116
- "integrity": "sha512-zi5pKIh60oPwOCDQapAZ3Mya4y56MI2BoGvY8JtztYaXTorGmAoyf6jjb50Wt+HfoYYjM3OlPt03XMlCFZJnIQ==",
117
- "cpu": [
118
- "x64"
119
- ],
120
- "dev": true,
121
- "license": "MIT",
122
- "optional": true,
123
- "os": [
124
- "linux"
125
- ]
126
- },
127
- "node_modules/@cargo-messages/win32-arm64-msvc": {
128
- "version": "0.1.81",
129
- "resolved": "https://registry.npmjs.org/@cargo-messages/win32-arm64-msvc/-/win32-arm64-msvc-0.1.81.tgz",
130
- "integrity": "sha512-oyiT8AYLoguF7cFOMYDsPv3eirzBcFafOOfRsFyd3+wmaPTl/DdbCq446oThRmSAsEGJpzhzj7TafcnXMBkHbg==",
131
- "cpu": [
132
- "arm64"
133
- ],
134
- "dev": true,
135
- "license": "MIT",
136
- "optional": true,
137
- "os": [
138
- "win32"
139
- ]
140
- },
141
- "node_modules/@cargo-messages/win32-x64-msvc": {
142
- "version": "0.1.81",
143
- "resolved": "https://registry.npmjs.org/@cargo-messages/win32-x64-msvc/-/win32-x64-msvc-0.1.81.tgz",
144
- "integrity": "sha512-B5Ukf4AohtIv27uCP/AgM+7vYwQ4RacI6m8ZBr2XKeSrjZXcXguzlZd+wD7bD5+wa0capvXKUskZDnpG/DcYiA==",
145
- "cpu": [
146
- "x64"
147
- ],
148
- "dev": true,
149
- "license": "MIT",
150
- "optional": true,
151
- "os": [
152
- "win32"
153
- ]
154
- },
155
- "node_modules/@neon-rs/cli": {
156
- "version": "0.1.82",
157
- "resolved": "https://registry.npmjs.org/@neon-rs/cli/-/cli-0.1.82.tgz",
158
- "integrity": "sha512-QrlGPQp9KOGuMvjjua79lEV2QTcE16m8JatG5ITdQpBAwRQpDw5xab57W9130y2iUEfMzYtp7v6pcN1fUB0Exg==",
159
- "dev": true,
160
- "license": "MIT",
161
- "bin": {
162
- "neon": "index.js"
163
- },
164
- "optionalDependencies": {
165
- "@cargo-messages/android-arm-eabi": "0.1.81",
166
- "@cargo-messages/darwin-arm64": "0.1.81",
167
- "@cargo-messages/darwin-x64": "0.1.81",
168
- "@cargo-messages/linux-arm-gnueabihf": "0.1.81",
169
- "@cargo-messages/linux-arm64-gnu": "0.1.81",
170
- "@cargo-messages/linux-arm64-musl": "0.1.81",
171
- "@cargo-messages/linux-x64-gnu": "0.1.81",
172
- "@cargo-messages/linux-x64-musl": "0.1.81",
173
- "@cargo-messages/win32-arm64-msvc": "0.1.81",
174
- "@cargo-messages/win32-x64-msvc": "0.1.81"
175
- }
176
- }
177
- }
178
- }
@@ -1,18 +0,0 @@
1
- #!/usr/bin/env node
2
-
3
- // This script runs before postinstall
4
- // It ensures the native module directory structure is correct
5
-
6
- const path = require('path');
7
- const fs = require('fs');
8
-
9
- const nativeDir = path.join(__dirname, '..', 'native');
10
-
11
- // Ensure native directory exists
12
- if (!fs.existsSync(nativeDir)) {
13
- console.error('Error: native directory not found');
14
- process.exit(1);
15
- }
16
-
17
- // The actual installation will be handled by npm
18
- // This script just validates the structure
@@ -1,79 +0,0 @@
1
- #!/usr/bin/env node
2
-
3
- const { execSync } = require('child_process');
4
- const path = require('path');
5
- const fs = require('fs');
6
-
7
- const nativeDir = path.join(__dirname, '..', 'native');
8
- const indexNodePath = path.join(nativeDir, 'index.node');
9
-
10
- // Check if native directory exists
11
- if (!fs.existsSync(nativeDir)) {
12
- console.error('[gcsdk] ✗ Native directory not found:', nativeDir);
13
- process.exit(1);
14
- }
15
-
16
- // Check if index.node already exists
17
- if (fs.existsSync(indexNodePath)) {
18
- console.log('[gcsdk] ✓ Native module already built');
19
- process.exit(0);
20
- }
21
-
22
- console.log('[gcsdk] Building native module...');
23
- console.log('[gcsdk] Native directory:', nativeDir);
24
-
25
- try {
26
- // Change to native directory and build
27
- const originalCwd = process.cwd();
28
- process.chdir(nativeDir);
29
-
30
- try {
31
- // Check if package.json exists
32
- const packageJsonPath = path.join(nativeDir, 'package.json');
33
- if (!fs.existsSync(packageJsonPath)) {
34
- throw new Error('package.json not found in native directory');
35
- }
36
-
37
- // Install dependencies first (if needed)
38
- const nodeModulesPath = path.join(nativeDir, 'node_modules');
39
- if (!fs.existsSync(nodeModulesPath) || !fs.existsSync(path.join(nodeModulesPath, '@neon-rs'))) {
40
- console.log('[gcsdk] Installing native module dependencies...');
41
- execSync('npm install', {
42
- stdio: 'inherit',
43
- cwd: nativeDir,
44
- env: { ...process.env, npm_config_loglevel: 'error' }
45
- });
46
- }
47
-
48
- // Build the native module
49
- console.log('[gcsdk] Building native module (this may take a while)...');
50
- console.log('[gcsdk] This requires Rust to be installed: https://rustup.rs/');
51
- execSync('npm run build', {
52
- stdio: 'inherit',
53
- cwd: nativeDir
54
- });
55
-
56
- // Verify the build
57
- if (fs.existsSync(indexNodePath)) {
58
- console.log('[gcsdk] ✓ Native module built successfully');
59
- process.exit(0);
60
- } else {
61
- throw new Error('index.node not found after build. Build may have failed.');
62
- }
63
- } finally {
64
- process.chdir(originalCwd);
65
- }
66
- } catch (error) {
67
- console.error('[gcsdk] ✗ Failed to build native module');
68
- console.error('[gcsdk] Error:', error.message);
69
- if (error.stdout) console.error('[gcsdk] stdout:', error.stdout.toString());
70
- if (error.stderr) console.error('[gcsdk] stderr:', error.stderr.toString());
71
- console.error('[gcsdk]');
72
- console.error('[gcsdk] Make sure Rust is installed: https://rustup.rs/');
73
- console.error('[gcsdk] You can also build manually: cd node_modules/gcsdk/native && npm install && npm run build');
74
- console.error('[gcsdk]');
75
- console.error('[gcsdk] Note: The package will not work until the native module is built.');
76
- // Don't exit with error code to allow npm install to complete
77
- // Users can build manually if needed
78
- process.exit(0);
79
- }