diff --git a/.github/workflows/release-cli.yml b/.github/workflows/release-cli.yml index c6c4b3a8..3ea1b5a2 100644 --- a/.github/workflows/release-cli.yml +++ b/.github/workflows/release-cli.yml @@ -53,7 +53,7 @@ jobs: uses: softprops/action-gh-release@v1 if: startsWith(github.ref, 'refs/tags/') with: - files: target/release/gistr.exe + files: target/release/gremlin-cli.exe env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/gremlin-cli/Cargo.toml b/gremlin-cli/Cargo.toml index 541280f0..2a65a7d8 100644 --- a/gremlin-cli/Cargo.toml +++ b/gremlin-cli/Cargo.toml @@ -3,6 +3,12 @@ name = "gremlin-cli" version = "0.1.0" authors = ["wolf4ood "] edition = "2018" +license = "Apache-2.0" +description= "A minimal Rust CLI for Apache TinkerPop™" +repository = "https://github.com/wolf4ood/gremlin-rs" +keywords = ["database", "graphs","tinkerpop","cli"] +categories = ["database","cli"] +readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/gremlin-cli/README.md b/gremlin-cli/README.md new file mode 100644 index 00000000..60958051 --- /dev/null +++ b/gremlin-cli/README.md @@ -0,0 +1,6 @@ + + +## gremlin-cli + + +A minimal cli for exploring graphs data in Gremlin Server. \ No newline at end of file