Skip to content

Commit

Permalink
Add stellar-cli crate alongside soroban-cli (#1320)
Browse files Browse the repository at this point in the history
* Add stellar-cli crate alongside soroban-cli

* fix docs

* fix fmt

* fix readme

* fix account doesnt exist

* Revert "fix account doesnt exist"

This reverts commit 1945c5c.

---------

Co-authored-by: Nando Vieira <[email protected]>
  • Loading branch information
leighmcculloch and fnando authored May 11, 2024
1 parent 38d0fa6 commit 8d9c479
Show file tree
Hide file tree
Showing 25 changed files with 377 additions and 272 deletions.
1 change: 0 additions & 1 deletion .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# paths = ["/path/to/override"] # path dependency overrides

[alias] # command aliases
md-gen = "run --bin doc-gen --features clap-markdown"
f = "fmt"
# b = "build"
# c = "check"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/full-help-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
# this looks goofy to get GITHUB_OUTPUT to work with multi-line return values;
# see https://stackoverflow.com/a/74266196/249801
run: |
cargo md-gen
raw_diff=$(git diff docs/soroban-cli-full-docs.md)
make generate-full-help-doc
raw_diff=$(git diff FULL_HELP_DOCS.md)
if [ "$raw_diff" != "" ]; then echo ""; echo "Unexpected docs change:"; echo "======================="; echo ""; echo "$raw_diff"; echo ""; echo "======================="; echo ""; fi
echo diff=$raw_diff >> $GITHUB_OUTPUT
id: doc-gen
Expand Down
7 changes: 7 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[workspace]
resolver = "2"
members = [
"cmd/stellar-cli",
"cmd/soroban-cli",
"cmd/crates/*",
"cmd/crates/soroban-test/tests/fixtures/test-wasms/*",
Expand Down
Loading

0 comments on commit 8d9c479

Please sign in to comment.