Skip to content

Commit 1a46308

Browse files
committed
docs: updated from rust to go install instructions
1 parent 5efe060 commit 1a46308

2 files changed

Lines changed: 5 additions & 11 deletions

File tree

README.md

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -86,21 +86,15 @@ brew install boringsql/boringsql/dryrun
8686

8787
**From source:**
8888

89-
Requires Rust. If you don't have it, install via [rustup](https://rustup.rs/):
90-
91-
```sh
92-
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
93-
```
94-
95-
Then:
89+
Requires Go 1.26+. If you don't have it, install via [go.dev/dl](https://go.dev/dl/).
9690

9791
```sh
9892
git clone https://github.com/boringsql/dryrun.git
9993
cd dryrun
100-
cargo build --release
94+
go build -o bin/dryrun ./cmd/dryrun
10195
```
10296

103-
The binary is at `target/release/dryrun`.
97+
The binary is at `bin/dryrun`.
10498

10599
## Quickstart
106100

TUTORIAL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ dryrun gives your AI assistant (or CLI) full visibility into your PostgreSQL sch
55
## Build
66

77
```sh
8-
cargo build --release
8+
go build -o bin/dryrun ./cmd/dryrun
99
```
1010

11-
Binary: `target/release/dryrun`
11+
Binary: `bin/dryrun`
1212

1313
---
1414

0 commit comments

Comments
 (0)