Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ cargo test --test <test_file>
Reproduce the benchmark regression gate locally without checking out `main` in place:

```bash
cargo install critcmp --version 0.1.7
cargo install --locked critcmp --version 0.1.7
bash scripts/check_benchmark_regressions.sh
```

Expand All @@ -162,7 +162,7 @@ Fuzzing helps discover crashes and panics in critical code paths like WASM parsi
**Prerequisites:**
Install `cargo-fuzz`:
```bash
cargo install cargo-fuzz
cargo install --locked cargo-fuzz
```

**Running a fuzz target:**
Expand Down
6 changes: 4 additions & 2 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,16 @@ A command-line debugger for Soroban smart contracts on the Stellar network. Debu

#### Using Cargo (Recommended)
```bash
cargo install soroban-debugger
cargo install --locked soroban-debugger
```

> The `--locked` flag pins dependency versions to those tested by the maintainers, ensuring a reproducible install.

#### From Source
```bash
git clone https://github.com/Timi16/soroban-debugger.git
cd soroban-debugger
cargo install --path .
cargo install --locked --path .
```

### 2. Your First Debug Run
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ If you have Rust installed, you can install the debugger directly from source or

```bash
# Install from crates.io
cargo install soroban-debugger
cargo install --locked soroban-debugger
```

### Option B: Download Pre-built Binaries
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/first-debug.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ To step through Soroban WebAssembly (WASM) execution, you need the Soroban debug
Install it via Cargo by running the following command in your terminal:

```bash
cargo install soroban-debugger
cargo install --locked soroban-debugger
```

Verify the installation was successful by checking the version:
Expand Down
Loading