winload-rust-bin 0.1.7-beta.4 → 0.1.7-rc.1
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 +9 -2
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
|
|
21
21
|
[](https://pypi.org/project/winload/)
|
|
22
22
|
[](https://www.npmjs.com/package/winload-rust-bin)
|
|
23
|
+
[](https://crates.io/crates/winload)
|
|
23
24
|
|
|
24
25
|
[](https://scoop.sh/#/apps?q=%22https%3A%2F%2Fgithub.com%2FVincentZyuApps%2Fscoop-bucket%22&o=false)
|
|
25
26
|
[](https://aur.archlinux.org/packages/winload-rust-bin)
|
|
@@ -44,8 +45,9 @@ https://github.com/rolandriegel/nload
|
|
|
44
45
|
- **Minimal UI**: clean TUI that mirrors nload's ergonomics.
|
|
45
46
|
|
|
46
47
|
## 📥 Python Edition Installation
|
|
47
|
-
> 💡 **Implementation Note**: Only PyPI and
|
|
48
|
-
>
|
|
48
|
+
> 💡 **Implementation Note**: Only PyPI and GitHub/Gitee provide Python edition.
|
|
49
|
+
> Only Cargo provides Rust source code for local compilation.
|
|
50
|
+
> All other package managers (Scoop, AUR, npm, APT, RPM) and GitHub Releases distribute **Rust binaries only**.
|
|
49
51
|
### Python (pip)
|
|
50
52
|
```bash
|
|
51
53
|
pip install winload
|
|
@@ -59,6 +61,11 @@ npm install -g winload-rust-bin
|
|
|
59
61
|
npx winload-rust-bin
|
|
60
62
|
```
|
|
61
63
|
> Includes 6 precompiled binaries for x86_64 & ARM64 across Windows, Linux, and macOS.
|
|
64
|
+
|
|
65
|
+
### Cargo (Build from source)
|
|
66
|
+
```bash
|
|
67
|
+
cargo install winload
|
|
68
|
+
```
|
|
62
69
|
### Windows (Scoop)
|
|
63
70
|
```powershell
|
|
64
71
|
scoop bucket add vincentzyu https://github.com/VincentZyuApps/scoop-bucket
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "winload-rust-bin",
|
|
3
|
-
"version": "0.1.7-
|
|
3
|
+
"version": "0.1.7-rc.1",
|
|
4
4
|
"description": "Network Load Monitor — nload-like TUI tool for Windows/Linux/macOS (prebuilt Rust binary)",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
"README.md"
|
|
30
30
|
],
|
|
31
31
|
"optionalDependencies": {
|
|
32
|
-
"winload-rust-bin-win32-x64": "0.1.7-
|
|
33
|
-
"winload-rust-bin-win32-arm64": "0.1.7-
|
|
34
|
-
"winload-rust-bin-linux-x64": "0.1.7-
|
|
35
|
-
"winload-rust-bin-linux-arm64": "0.1.7-
|
|
36
|
-
"winload-rust-bin-darwin-x64": "0.1.7-
|
|
37
|
-
"winload-rust-bin-darwin-arm64": "0.1.7-
|
|
32
|
+
"winload-rust-bin-win32-x64": "0.1.7-rc.1",
|
|
33
|
+
"winload-rust-bin-win32-arm64": "0.1.7-rc.1",
|
|
34
|
+
"winload-rust-bin-linux-x64": "0.1.7-rc.1",
|
|
35
|
+
"winload-rust-bin-linux-arm64": "0.1.7-rc.1",
|
|
36
|
+
"winload-rust-bin-darwin-x64": "0.1.7-rc.1",
|
|
37
|
+
"winload-rust-bin-darwin-arm64": "0.1.7-rc.1"
|
|
38
38
|
}
|
|
39
39
|
}
|