File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
9892git clone https://github.com/boringsql/dryrun.git
9993cd 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments