Skip to content

Commit

Permalink
Merge branch 'main' into feat/muxed_keys
Browse files Browse the repository at this point in the history
  • Loading branch information
elizabethengelman committed Jan 21, 2025
2 parents 5391d3d + 1160470 commit 688de1c
Show file tree
Hide file tree
Showing 24 changed files with 2,970 additions and 13 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,9 @@ defaults:
shell: bash

jobs:

publish:
uses: stellar/actions/.github/workflows/rust-publish.yml@main
with:
additional-deb-packages: libudev-dev
additional-deb-packages: libudev-dev libdbus-1-dev
secrets:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
#- os: ubuntu-latest-16-cores
# target: aarch64-unknown-linux-gnu
# cargo-hack-feature-options: --feature-powerset
# additional-deb-packages: libudev-dev libssl-dev
# additional-deb-packages: libudev-dev libssl-dev libdbus-1-dev
- os: macos-latest
target: x86_64-apple-darwin
cargo-hack-feature-options: --feature-powerset
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ should initially look like this.
> origin https://github.com/YOUR_USERNAME/stellar-cli.git (push)
```

* Set the `stellar/stellar-cli` repo as new remote upstream repository that will
* Set the `stellar/stellar-cli` repo as the remote upstream repository that will
sync with your fork.
```
git remote add upstream https://github.com/stellar/stellar-cli.git
Expand Down
66 changes: 66 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
Expand Up @@ -16,6 +16,7 @@ default-members = [
exclude = [
"cmd/crates/soroban-test/tests/fixtures/hello",
"cmd/crates/soroban-test/tests/fixtures/bye",
"cmd/crates/soroban-test/tests/fixtures/eth_abi",
]

[workspace.package]
Expand Down
13 changes: 13 additions & 0 deletions FULL_HELP_DOCS.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ Anything after the `--` double dash (the "slop") is parsed as arguments to the c
* `completion` — Print shell completion code for the specified shell
* `cache` — Cache for transactions and contract specs
* `version` — Print version information
* `licenses` — Show dependency licenses

###### **Options:**

Expand Down Expand Up @@ -2443,3 +2444,15 @@ Print version information



## `stellar licenses`

Show dependency licenses

**Usage:** `stellar licenses [OPTIONS]`

###### **Options:**

* `-v`, `--verbose` — Display the license text



1 change: 1 addition & 0 deletions cmd/crates/soroban-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ assert_fs = "1.0.7"
predicates = { workspace = true }
fs_extra = "1.3.0"
toml = { workspace = true }
home = "0.5.9"

[dev-dependencies]
serde_json = "1.0.93"
Expand Down
4 changes: 2 additions & 2 deletions cmd/crates/soroban-test/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ fn invoke() {
}
```

Itegration tests in Crate
Integration tests in Crate
==============

Currently all tests that require an RPC server are hidden behind a `it` feature, [found here](./tests/it/integration). To allow Rust-Analyzer to see the tests in vscode, `.vscode/settings.json`. Without RA, you can't follow through definitions and more importantly see errors before running tests tests.
Currently all tests that require an RPC server are hidden behind a `it` feature, [found here](./tests/it/integration). To allow Rust-Analyzer to see the tests in vscode, `.vscode/settings.json`. Without RA, you can't follow through definitions and more importantly see errors before running tests.
Loading

0 comments on commit 688de1c

Please sign in to comment.