Skip to content

Commit 32ba049

Browse files
committed
fix: change cli tool name to fastedge-run
1 parent 6e64705 commit 32ba049

File tree

5 files changed

+33
-33
lines changed

5 files changed

+33
-33
lines changed

.github/workflows/release.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
shell: bash
6565
run: |
6666
# Replace with the name of your binary
67-
binary_name="cli"
67+
binary_name="fastedge-run"
6868
6969
dirname="$binary_name-${{ env.VERSION }}-${{ matrix.target }}"
7070
mkdir "$dirname"

Cargo.lock

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

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ unused_import_braces = 'warn'
3434
all = 'allow'
3535

3636
[package]
37-
name = "cli"
37+
name = "fastedge-run"
3838
version.workspace = true
3939
edition.workspace = true
4040
publish.workspace = true

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FastEdge CLI and common runtime libraries
1+
FastEdge run tool and common runtime libraries
22

33
# Setting up
44

@@ -17,11 +17,11 @@ Run `git submodule update --init --recursive -f`
1717

1818
## Building
1919

20-
Run `cargo build --release` to build CLI tool and all required dependencies.
20+
Run `cargo build --release` to build fastedge app run tool and all required dependencies.
2121

2222
## Releasing
2323

24-
CLI tool and FastEdge lib are released with GitHub using [cargo-release](https://github.com/crate-ci/cargo-release) tool.
24+
Fastedge run tool and FastEdge lib are released with GitHub using [cargo-release](https://github.com/crate-ci/cargo-release) tool.
2525
The release process includes next steps:
2626
* increment crate version in Cargo.toml
2727
* generate CHANGELOG.md file
@@ -67,5 +67,5 @@ Note: It also creates a PR for `releases/**` branch to merge it to `main` as soo
6767

6868
# Running
6969

70-
## CLI
71-
* run with `cargo run --bin cli -- --help` flag to list CLI commands and options
70+
## Fastedge Run Tool
71+
* run with `cargo run --bin fastedge-run -- --help` flag to list run commands and options

src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ use wasmtime::component::Component;
3333
use wasmtime::{Engine, Module};
3434

3535
#[derive(Debug, Parser)]
36-
#[command(name = "cli")]
36+
#[command(name = "fastedge-run")]
3737
#[command(about = "FastEdge test tool", long_about = None)]
3838
struct Cli {
3939
#[command(subcommand)]

0 commit comments

Comments
 (0)