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.
Files changed (2) hide show
  1. package/README.md +9 -2
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -20,6 +20,7 @@
20
20
 
21
21
  [![PyPI](https://img.shields.io/badge/PyPI-3776AB?style=for-the-badge&logo=pypi&logoColor=white)](https://pypi.org/project/winload/)
22
22
  [![npm](https://img.shields.io/badge/npm-CB3837?style=for-the-badge&logo=npm&logoColor=white)](https://www.npmjs.com/package/winload-rust-bin)
23
+ [![Crates.io](https://img.shields.io/badge/Crates.io-000000?style=for-the-badge&logo=rust&logoColor=white)](https://crates.io/crates/winload)
23
24
 
24
25
  [![Scoop](https://img.shields.io/badge/Scoop-7B4AE2?style=for-the-badge&logo=scoop&logoColor=white)](https://scoop.sh/#/apps?q=%22https%3A%2F%2Fgithub.com%2FVincentZyuApps%2Fscoop-bucket%22&o=false)
25
26
  [![AUR](https://img.shields.io/badge/AUR-1793D1?style=for-the-badge&logo=archlinux&logoColor=white)](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 source code from GitHub/Gitee provide Python edition.
48
- > All package managers (Scoop, AUR, npm, APT, RPM) distribute **Rust binaries only**.
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-beta.4",
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-beta.4",
33
- "winload-rust-bin-win32-arm64": "0.1.7-beta.4",
34
- "winload-rust-bin-linux-x64": "0.1.7-beta.4",
35
- "winload-rust-bin-linux-arm64": "0.1.7-beta.4",
36
- "winload-rust-bin-darwin-x64": "0.1.7-beta.4",
37
- "winload-rust-bin-darwin-arm64": "0.1.7-beta.4"
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
  }