@ahqstore/cli 0.11.4 → 0.12.0
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/Cargo.toml +1 -1
- package/README.md +17 -3
- package/dart/README.md +2 -2
- package/dart/bin/ahqstore.dart +1 -1
- package/dart/pubspec.yaml +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
package/Cargo.toml
CHANGED
package/README.md
CHANGED
|
@@ -1,8 +1,20 @@
|
|
|
1
1
|
# AHQ Store CLI
|
|
2
2
|
|
|
3
|
+
[](https://crates.io/crates/ahqstore_cli_rs)
|
|
4
|
+
[](https://www.npmjs.com/package/@ahqstore/cli)
|
|
5
|
+
[](https://jsr.io/@ahqstore/cli)
|
|
6
|
+
[](https://pypi.org/project/ahqstore-cli/)
|
|
7
|
+
[](https://www.nuget.org/packages/AHQStoreCLI)
|
|
8
|
+
[](https://pub.dev/packages/ahqstore_cli)
|
|
9
|
+
[](https://github.com/ahqstore/cli/actions/workflows/publish.yml)
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
3
13
|
Read more about it [here](https://ahqstore.github.io)
|
|
4
14
|
|
|
5
|
-
|
|
15
|
+
The **official cross-platform AHQ Store CLI**, built in Rust and exported everywhere via C ABI.
|
|
16
|
+
One codebase → many runtimes:
|
|
17
|
+
|
|
6
18
|
The original CLI has been written in rust lang and we're quite excited to tell you how versatile this tool actually is. This tool is **OFFICIALLY** available and maintained for :
|
|
7
19
|
|
|
8
20
|
- [Crates.io (Original)](https://crates.io/crates/ahqstore_cli_rs)
|
|
@@ -13,6 +25,8 @@ The original CLI has been written in rust lang and we're quite excited to tell y
|
|
|
13
25
|
- [Pub.dev (Port)](https://pub.dev/packages/ahqstore_cli)
|
|
14
26
|
- [Golang (Port; See Installation Guide Below)](#golang)
|
|
15
27
|
|
|
28
|
+
Prebuilt binaries available for Linux, macOS, and Windows (x64, arm64, i686, armv7).
|
|
29
|
+
|
|
16
30
|
All the platforms use the same codebase (the rust codebase). We're making use of the C-Abi to
|
|
17
31
|
make the CLI compatible to the following languages/runtimes:
|
|
18
32
|
|
|
@@ -64,7 +78,7 @@ deno install -g npm:@ahqstore/cli
|
|
|
64
78
|
### Using JSR
|
|
65
79
|
|
|
66
80
|
```sh
|
|
67
|
-
deno install -A -f -g -n ahqstore https://jsr.io/@ahqstore/cli/0.
|
|
81
|
+
deno install -A -f -g -n ahqstore https://jsr.io/@ahqstore/cli/0.12.0/js/cli.js
|
|
68
82
|
```
|
|
69
83
|
|
|
70
84
|
## Bun
|
|
@@ -90,7 +104,7 @@ go install github.com/ahqstore/cli-go/ahqstore@latest
|
|
|
90
104
|
## Dart
|
|
91
105
|
|
|
92
106
|
```sh
|
|
93
|
-
dart pub global
|
|
107
|
+
dart pub global activate ahqstore_cli
|
|
94
108
|
```
|
|
95
109
|
|
|
96
110
|
## .NET C#
|
package/dart/README.md
CHANGED
|
@@ -64,7 +64,7 @@ deno install -g npm:@ahqstore/cli
|
|
|
64
64
|
### Using JSR
|
|
65
65
|
|
|
66
66
|
```sh
|
|
67
|
-
deno install -A -f -g -n ahqstore https://jsr.io/@ahqstore/cli/0.
|
|
67
|
+
deno install -A -f -g -n ahqstore https://jsr.io/@ahqstore/cli/0.12.0/js/cli.js
|
|
68
68
|
```
|
|
69
69
|
|
|
70
70
|
## Bun
|
|
@@ -90,7 +90,7 @@ go install github.com/ahqstore/cli-go/ahqstore@latest
|
|
|
90
90
|
## Dart
|
|
91
91
|
|
|
92
92
|
```sh
|
|
93
|
-
dart pub global
|
|
93
|
+
dart pub global activate ahqstore_cli
|
|
94
94
|
```
|
|
95
95
|
|
|
96
96
|
## .NET C#
|
package/dart/bin/ahqstore.dart
CHANGED
package/dart/pubspec.yaml
CHANGED
package/jsr.json
CHANGED