@git.zone/tsrust 1.3.3 → 1.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist_ts/00_commitinfo_data.js +1 -1
- package/package.json +7 -7
- package/readme.md +3 -3
- package/ts/00_commitinfo_data.ts +1 -1
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export const commitinfo = {
|
|
5
5
|
name: '@git.zone/tsrust',
|
|
6
|
-
version: '1.3.
|
|
6
|
+
version: '1.3.4',
|
|
7
7
|
description: 'A tool for compiling Rust projects, detecting Cargo workspaces, building with cargo, and placing binaries in a conventional dist_rust directory.'
|
|
8
8
|
};
|
|
9
9
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSxrQkFBa0I7SUFDeEIsT0FBTyxFQUFFLE9BQU87SUFDaEIsV0FBVyxFQUFFLGtKQUFrSjtDQUNoSyxDQUFBIn0=
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@git.zone/tsrust",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A tool for compiling Rust projects, detecting Cargo workspaces, building with cargo, and placing binaries in a conventional dist_rust directory.",
|
|
6
6
|
"main": "dist_ts/index.js",
|
|
@@ -34,18 +34,18 @@
|
|
|
34
34
|
"homepage": "https://code.foss.global/git.zone/tsrust#README",
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@push.rocks/early": "^4.0.4",
|
|
37
|
-
"@push.rocks/smartcli": "^4.0.
|
|
38
|
-
"@push.rocks/smartconfig": "^6.
|
|
39
|
-
"@push.rocks/smartfile": "^13.1.
|
|
37
|
+
"@push.rocks/smartcli": "^4.0.21",
|
|
38
|
+
"@push.rocks/smartconfig": "^6.1.1",
|
|
39
|
+
"@push.rocks/smartfile": "^13.1.3",
|
|
40
40
|
"@push.rocks/smartpath": "^6.0.0",
|
|
41
41
|
"@push.rocks/smartshell": "^3.3.8",
|
|
42
42
|
"smol-toml": "^1.6.1"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@git.zone/tsbuild": "^4.4.0",
|
|
46
|
-
"@git.zone/tsrun": "^2.0.
|
|
47
|
-
"@git.zone/tstest": "^3.5
|
|
48
|
-
"@types/node": "^25.
|
|
46
|
+
"@git.zone/tsrun": "^2.0.3",
|
|
47
|
+
"@git.zone/tstest": "^3.6.5",
|
|
48
|
+
"@types/node": "^25.6.2"
|
|
49
49
|
},
|
|
50
50
|
"files": [
|
|
51
51
|
"ts/**/*",
|
package/readme.md
CHANGED
|
@@ -8,16 +8,16 @@ For reporting bugs, issues, or security vulnerabilities, please visit [community
|
|
|
8
8
|
|
|
9
9
|
## Install
|
|
10
10
|
|
|
11
|
-
Install globally
|
|
11
|
+
Install globally with pnpm:
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
|
-
|
|
14
|
+
pnpm add -g @git.zone/tsrust
|
|
15
15
|
```
|
|
16
16
|
|
|
17
17
|
Or as a project-level dev dependency:
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
|
-
pnpm
|
|
20
|
+
pnpm add --save-dev @git.zone/tsrust
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
> ⚡ **No Rust required!** If `cargo` isn't found on your system, `tsrust` automatically downloads and installs a minimal Rust toolchain to `/tmp/tsrust_toolchain/`. This gives a zero-setup experience. If you already have Rust installed, `tsrust` uses your system toolchain.
|
package/ts/00_commitinfo_data.ts
CHANGED