gcsdk 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -12
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +43 -12
- package/native/cargo.log +21 -21
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -18,40 +18,40 @@ This enables features like:
|
|
|
18
18
|
|
|
19
19
|
## Installation
|
|
20
20
|
|
|
21
|
-
###
|
|
21
|
+
### Installation
|
|
22
22
|
|
|
23
23
|
```bash
|
|
24
24
|
npm install gcsdk
|
|
25
|
+
# or
|
|
26
|
+
bun add gcsdk
|
|
27
|
+
# or
|
|
28
|
+
pnpm add gcsdk
|
|
29
|
+
# or
|
|
30
|
+
yarn add gcsdk
|
|
25
31
|
```
|
|
26
32
|
|
|
27
|
-
**Note:** This package requires Rust to be installed on your system
|
|
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)
|
|
28
36
|
|
|
29
37
|
If you don't have Rust installed, you can install it from [rustup.rs](https://rustup.rs/).
|
|
30
38
|
|
|
31
39
|
### Troubleshooting
|
|
32
40
|
|
|
33
|
-
If you encounter an error about the native module
|
|
41
|
+
If you encounter an error about the native module:
|
|
34
42
|
|
|
35
43
|
1. **Check if Rust is installed:**
|
|
36
44
|
```bash
|
|
37
45
|
rustc --version
|
|
38
46
|
```
|
|
39
47
|
|
|
40
|
-
2. **
|
|
48
|
+
2. **The module should build automatically on first use.** If it fails, manually build:
|
|
41
49
|
```bash
|
|
42
50
|
cd node_modules/gcsdk/native
|
|
43
51
|
npm install
|
|
44
52
|
npm run build
|
|
45
53
|
```
|
|
46
54
|
|
|
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
|
-
|
|
55
55
|
### From source
|
|
56
56
|
|
|
57
57
|
```bash
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"
|
|
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"}
|
package/dist/index.js
CHANGED
|
@@ -3,22 +3,53 @@ 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");
|
|
6
7
|
// Resolve the native module path
|
|
7
8
|
// When compiled, __dirname will be the dist/ directory
|
|
8
9
|
// So we need to go up one level to find native/
|
|
9
|
-
const
|
|
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)
|
|
10
13
|
if (!fs.existsSync(nativeModulePath)) {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
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
|
+
}
|
|
22
53
|
}
|
|
23
54
|
const native = require(nativeModulePath);
|
|
24
55
|
class GitChat {
|
package/native/cargo.log
CHANGED
|
@@ -8,59 +8,59 @@
|
|
|
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
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
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#
|
|
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
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
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":"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
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
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#
|
|
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}
|
|
19
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"}
|
|
20
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"}
|
|
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":"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
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
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":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#
|
|
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}
|
|
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}
|
|
29
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
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#
|
|
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
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#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"}
|
|
36
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
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
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#
|
|
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
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#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}
|
|
44
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}
|
|
45
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}
|
|
46
|
-
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#
|
|
47
|
-
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#
|
|
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}
|
|
48
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}
|
|
49
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
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#
|
|
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}
|
|
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}
|
|
54
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}
|
|
55
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}
|
|
56
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}
|
|
57
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}
|
|
58
|
-
{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#
|
|
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}
|
|
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
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}
|
|
62
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}
|
|
63
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}
|
|
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,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gcsdk",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
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",
|
|
7
7
|
"exports": {
|
|
8
8
|
".": {
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
9
10
|
"require": "./dist/index.js",
|
|
10
|
-
"import": "./dist/index.js"
|
|
11
|
-
"types": "./dist/index.d.ts"
|
|
11
|
+
"import": "./dist/index.js"
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"files": [
|
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
"build:ts": "tsc",
|
|
24
24
|
"build:native": "cd native && npm install && npm run build",
|
|
25
25
|
"postinstall": "node scripts/postinstall.js",
|
|
26
|
+
"install": "node scripts/postinstall.js",
|
|
26
27
|
"prepublishOnly": "npm run build",
|
|
27
28
|
"test": "bun test",
|
|
28
29
|
"clean": "rm -rf dist"
|