Skip to content

Commit 6d52f7e

Browse files
committed
removed cratepublication because this name is taken
1 parent 2be31f8 commit 6d52f7e

File tree

3 files changed

+45
-36
lines changed

3 files changed

+45
-36
lines changed

.github/workflows/release.yml

+28-28
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ jobs:
3030
with:
3131
RUSTTARGET: ${{ matrix.target }}
3232
EXTRA_FILES: "README.md LICENSE"
33-
UPLOAD_MODE: none
34-
- name: Upload archives artifacts
35-
uses: actions/upload-artifact@v3
36-
with:
37-
name: Binary
38-
path: |
39-
${{ steps.compile.outputs.BUILT_ARCHIVE }}
40-
${{ steps.compile.outputs.BUILT_CHECKSUM }}
33+
# UPLOAD_MODE: none
34+
# - name: Upload archives artifacts
35+
# uses: actions/upload-artifact@v3
36+
# with:
37+
# name: Binary
38+
# path: |
39+
# ${{ steps.compile.outputs.BUILT_ARCHIVE }}
40+
# ${{ steps.compile.outputs.BUILT_CHECKSUM }}
4141
release-binary:
4242
runs-on: ubuntu-latest
4343
steps:
@@ -49,23 +49,23 @@ jobs:
4949
with:
5050
name: gpt-cli
5151
path: target/release/gpt-cli
52-
release-plz:
53-
permissions:
54-
pull-requests: write
55-
contents: write
56-
name: Release-plz
57-
runs-on: ubuntu-latest
58-
steps:
59-
- name: Checkout repository
60-
uses: actions/checkout@v3
61-
with:
62-
fetch-depth: 0
63-
- name: Install Rust toolchain
64-
uses: dtolnay/rust-toolchain@stable
65-
- name: Run release-plz
66-
uses: MarcoIeni/release-plz-action@v0.4
67-
with:
68-
command: release
69-
env:
70-
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
71-
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
52+
# release-plz:
53+
# permissions:
54+
# pull-requests: write
55+
# contents: write
56+
# name: Release-plz
57+
# runs-on: ubuntu-latest
58+
# steps:
59+
# - name: Checkout repository
60+
# uses: actions/checkout@v3
61+
# with:
62+
# fetch-depth: 0
63+
# - name: Install Rust toolchain
64+
# uses: dtolnay/rust-toolchain@stable
65+
# - name: Run release-plz
66+
# uses: MarcoIeni/release-plz-action@v0.4
67+
# with:
68+
# command: release
69+
# env:
70+
# GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
71+
# CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+16-7
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,27 @@
11
[package]
22
name = "gpt-cli"
3-
version = "0.0.4"
3+
version = "0.0.5"
44
edition = "2021"
55

6+
authors = ["Daniel Gustaw <gustaw.daniel@gmail.com>"]
7+
license = "MIT"
8+
description = "Run linux commands with natural language. Eg.: 'show my graphic card' instead 'lspci | grep VGA'"
9+
readme = "README.md"
10+
homepage = "https://github.com/gustawdaniel/gpt-cli"
11+
repository = "https://github.com/gustawdaniel/gpt-cli"
12+
keywords = ["cli", "openai", "gpt3", "gpt3-cli", "gpt3-turbo"]
13+
categories = ["command-line-utilities"]
14+
615
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
716

817
[dependencies]
918
dirs = "4.0.0"
1019
serde_json = "1.0.94"
11-
rand="0.8.5"
20+
rand = "0.8.5"
1221
hex = "0.4.3"
13-
colored="2.0.0"
14-
serde={ version = "1.0.155", features = ["derive"] }
15-
reqwest={ version = "0.11", features = ["json"] }
16-
futures="0.3.27"
17-
tokio={ version = "1.26.0", features = ["full"] }
22+
colored = "2.0.0"
23+
serde = { version = "1.0.155", features = ["derive"] }
24+
reqwest = { version = "0.11", features = ["json"] }
25+
futures = "0.3.27"
26+
tokio = { version = "1.26.0", features = ["full"] }
1827
inquire = { version = "0.6.0" }

0 commit comments

Comments
 (0)