Skip to content

Commit

Permalink
0.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ahqsoftwares committed May 28, 2024
1 parent a31aebe commit 0e4940b
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 22 deletions.
15 changes: 10 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "ahqstore_cli_rs"
version = "0.3.4"
version = "0.3.5"
description = "AHQ Store CLI"
repository = "https://github.com/ahqstore/cli"
homepage = "https://github.com/ahqstore/cli"
Expand All @@ -19,7 +19,9 @@ path = "src/main.rs"

[dependencies]
# Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
napi = { version = "2.12.2", default-features = false, features = ["napi4"], optional = true }
napi = { version = "2.12.2", default-features = false, features = [
"napi4",
], optional = true }
napi-derive = { version = "2.12.2", optional = true }
inquire = { version = "0.7.5", features = ["editor"] }
chalk_rs = "1.0.1"
Expand All @@ -30,19 +32,22 @@ ahqstore-types = "2.0.0"
reqwest = { version = "0.12", features = ["json", "blocking"] }
sha2 = "0.10.8"
base64 = "0.22.1"
image = { version = "0.25", default-features = false, features = ["rayon", "png"]}
image = { version = "0.25", default-features = false, features = [
"rayon",
"png",
] }
rand = "0.8.5"

[target.'cfg(unix)'.dependencies]
openssl-sys = { version = "0.9.102", features = ["vendored"] }


[build-dependencies]
napi-build = {version = "2.0.1", optional = true}
napi-build = { version = "2.0.1", optional = true }

[profile.release]
lto = true
strip = "symbols"

[features]
node = ["dep:napi", "dep:napi-build", "dep:napi-derive"]
node = ["dep:napi", "dep:napi-build", "dep:napi-derive"]
4 changes: 2 additions & 2 deletions npm/darwin-arm64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ahqstore/cli-darwin-arm64",
"version": "0.3.4",
"version": "0.3.5",
"os": [
"darwin"
],
Expand All @@ -18,4 +18,4 @@
"engines": {
"node": ">= 10"
}
}
}
4 changes: 2 additions & 2 deletions npm/darwin-universal/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ahqstore/cli-darwin-universal",
"version": "0.3.4",
"version": "0.3.5",
"os": [
"darwin"
],
Expand All @@ -15,4 +15,4 @@
"repository": {
"url": "https://github.com/ahqstore/cli"
}
}
}
4 changes: 2 additions & 2 deletions npm/darwin-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ahqstore/cli-darwin-x64",
"version": "0.3.4",
"version": "0.3.5",
"os": [
"darwin"
],
Expand All @@ -18,4 +18,4 @@
"engines": {
"node": ">= 10"
}
}
}
4 changes: 2 additions & 2 deletions npm/linux-arm64-gnu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ahqstore/cli-linux-arm64-gnu",
"version": "0.3.4",
"version": "0.3.5",
"os": [
"linux"
],
Expand All @@ -21,4 +21,4 @@
"libc": [
"glibc"
]
}
}
4 changes: 2 additions & 2 deletions npm/linux-x64-gnu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ahqstore/cli-linux-x64-gnu",
"version": "0.3.4",
"version": "0.3.5",
"os": [
"linux"
],
Expand All @@ -21,4 +21,4 @@
"libc": [
"glibc"
]
}
}
4 changes: 2 additions & 2 deletions npm/win32-arm64-msvc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ahqstore/cli-win32-arm64-msvc",
"version": "0.3.4",
"version": "0.3.5",
"os": [
"win32"
],
Expand All @@ -18,4 +18,4 @@
"engines": {
"node": ">= 10"
}
}
}
4 changes: 2 additions & 2 deletions npm/win32-ia32-msvc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ahqstore/cli-win32-ia32-msvc",
"version": "0.3.4",
"version": "0.3.5",
"os": [
"win32"
],
Expand All @@ -18,4 +18,4 @@
"engines": {
"node": ">= 10"
}
}
}
4 changes: 2 additions & 2 deletions npm/win32-x64-msvc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ahqstore/cli-win32-x64-msvc",
"version": "0.3.4",
"version": "0.3.5",
"os": [
"win32"
],
Expand All @@ -18,4 +18,4 @@
"engines": {
"node": ">= 10"
}
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ahqstore/cli",
"version": "0.3.4",
"version": "0.3.5",
"napi": {
"name": "cli",
"triples": {
Expand Down

0 comments on commit 0e4940b

Please sign in to comment.