gcsdk 1.0.0 → 1.0.2

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
@@ -28,6 +28,30 @@ npm install gcsdk
28
28
 
29
29
  If you don't have Rust installed, you can install it from [rustup.rs](https://rustup.rs/).
30
30
 
31
+ ### Troubleshooting
32
+
33
+ If you encounter an error about the native module not being found:
34
+
35
+ 1. **Check if Rust is installed:**
36
+ ```bash
37
+ rustc --version
38
+ ```
39
+
40
+ 2. **Manually build the native module:**
41
+ ```bash
42
+ cd node_modules/gcsdk/native
43
+ npm install
44
+ npm run build
45
+ ```
46
+
47
+ 3. **Or reinstall the package:**
48
+ ```bash
49
+ npm uninstall gcsdk
50
+ npm install gcsdk
51
+ ```
52
+
53
+ The `postinstall` script should automatically build the native module, but if it doesn't run or fails, you can build it manually using the steps above.
54
+
31
55
  ### From source
32
56
 
33
57
  ```bash
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAGA,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":"AAyBA,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
@@ -2,7 +2,25 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.GitChat = void 0;
4
4
  const path = require("path");
5
- const native = require(path.join(__dirname, "../native/index.node"));
5
+ const fs = require("fs");
6
+ // Resolve the native module path
7
+ // When compiled, __dirname will be the dist/ directory
8
+ // So we need to go up one level to find native/
9
+ const nativeModulePath = path.join(__dirname, "../native/index.node");
10
+ if (!fs.existsSync(nativeModulePath)) {
11
+ const errorMessage = [
12
+ `Cannot find native module at: ${nativeModulePath}`,
13
+ ``,
14
+ `The native module needs to be built. Try:`,
15
+ ` 1. Make sure Rust is installed: https://rustup.rs/`,
16
+ ` 2. Run: cd node_modules/gcsdk/native && npm install && npm run build`,
17
+ ` 3. Or reinstall the package: npm install gcsdk`,
18
+ ``,
19
+ `If you're developing locally, run: npm run build:native`
20
+ ].join("\n");
21
+ throw new Error(errorMessage);
22
+ }
23
+ const native = require(nativeModulePath);
6
24
  class GitChat {
7
25
  constructor() {
8
26
  this.currentBranch = "main";
package/native/cargo.log CHANGED
@@ -1,66 +1,66 @@
1
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
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#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}
4
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}
5
- {"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}
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}
6
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
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
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#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}
10
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}
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":"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"}
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#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}
13
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
14
  {"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"}
15
15
  {"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}
16
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
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#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}
18
+ {"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}
19
+ {"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"}
19
20
  {"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"}
20
- {"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}
21
- {"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}
21
+ {"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}
22
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
23
  {"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}
24
+ {"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"}
25
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
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":"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"}
28
- {"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}
27
+ {"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}
28
+ {"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}
29
29
  {"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}
30
- {"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"}
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"}
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#linkme@0.3.35","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/Volumes/WD_2TB/warpy/gcsdk/native/target/release/build/linkme-bc8ed0d75ef5666f/out"}
32
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
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#linkme@0.3.35","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/Volumes/WD_2TB/warpy/gcsdk/native/target/release/build/linkme-bc8ed0d75ef5666f/out"}
34
+ {"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"}
35
+ {"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"}
35
36
  {"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"}
36
- {"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}
37
- {"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}
38
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
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#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}
40
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}
41
- {"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}
42
+ {"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}
43
+ {"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}
42
44
  {"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
45
  {"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#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}
47
+ {"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}
46
48
  {"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
49
  {"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
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#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}
52
- {"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}
51
+ {"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}
53
52
  {"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}
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
54
  {"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}
55
- {"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}
56
55
  {"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}
56
+ {"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}
57
57
  {"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}
58
58
  {"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}
59
59
  {"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}
60
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
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#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}
64
62
  {"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}
63
+ {"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}
64
+ {"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}
65
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
66
  {"reason":"build-finished","success":true}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gcsdk",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
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",
@@ -14,6 +14,7 @@
14
14
  "files": [
15
15
  "dist",
16
16
  "native",
17
+ "scripts",
17
18
  "README.md",
18
19
  "LICENSE"
19
20
  ],
@@ -21,7 +22,7 @@
21
22
  "build": "npm run build:ts && npm run build:native",
22
23
  "build:ts": "tsc",
23
24
  "build:native": "cd native && npm install && npm run build",
24
- "postinstall": "npm run build:native",
25
+ "postinstall": "node scripts/postinstall.js",
25
26
  "prepublishOnly": "npm run build",
26
27
  "test": "bun test",
27
28
  "clean": "rm -rf dist"
@@ -0,0 +1,18 @@
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
@@ -0,0 +1,79 @@
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
+ }