@@ -36,7 +36,7 @@ Install `cargo-pgx` regularly (see dev steps below for non-standard install).
3636
3737
3838``` bash
39- cargo install cargo-pgx
39+ cargo install --locked cargo-pgx
4040```
4141
4242
@@ -117,7 +117,7 @@ CREATE EXTENSION pgdd;
117117## Build binary packages
118118
119119Debian/Ubuntu Bionic binaries are available for 0.4.0
120- (first [ pgx] ( https://github.com/zombodb /pgx ) version)
120+ (first [ pgx] ( https://github.com/tcdi /pgx ) version)
121121and later. More distributions will likely have binaries available in the future.
122122
123123
@@ -149,15 +149,15 @@ dot -Goverlap=prism -Gspline=ortho -Tjpg pgdd.dot > pgdd.jpg
149149When working against Pgx installed from a non-tagged branch, install pgx using:
150150
151151``` bash
152- cargo install --force --git " https://github.com/zombodb /pgx" \
152+ cargo install --locked -- force --git " https://github.com/tcdi /pgx" \
153153 --branch " develop" \
154154 " cargo-pgx"
155155```
156156
157157Or a beta branch
158158
159159``` bash
160- cargo install --force cargo-pgx --version 0.2.0-beta.4
160+ cargo install --locked -- force cargo-pgx --version 0.2.0-beta.4
161161```
162162
163163Changes to ` Cargo.toml ` required in ` [lib] ` and ` [dependencies] ` sections.
@@ -174,16 +174,16 @@ crate-type = ["cdylib", "rlib"]
174174``` toml
175175[dependencies ]
176176
177- pgx = { git = " https://github.com/zombodb /pgx" , branch = " oh-no-type-resolution" }
178- pgx-macros = { git = " https://github.com/zombodb /pgx" , branch = " develop" }
177+ pgx = { git = " https://github.com/tcdi /pgx" , branch = " oh-no-type-resolution" }
178+ pgx-macros = { git = " https://github.com/tcdi /pgx" , branch = " develop" }
179179# pgx = "0.1.21"
180180# pgx-macros = "0.1.21"
181181
182182# Won't be needed in final version (hopefully!)
183- pgx-utils = { git = " https://github.com/zombodb /pgx" , branch = " develop" }
183+ pgx-utils = { git = " https://github.com/tcdi /pgx" , branch = " develop" }
184184
185185[dev-dependencies ]
186- pgx-tests = { git = " https://github.com/zombodb /pgx" , branch = " develop" }
186+ pgx-tests = { git = " https://github.com/tcdi /pgx" , branch = " develop" }
187187# pgx-tests = "0.1.21"
188188```
189189
@@ -222,14 +222,14 @@ Change
222222
223223``` bash
224224RUN /bin/bash rustup.sh -y \
225- && cargo install cargo-pgx
225+ && cargo install --locked cargo-pgx
226226```
227227
228228To
229229
230230``` bash
231231RUN /bin/bash rustup.sh -y \
232- && cargo install --force --git " https://github.com/zombodb /pgx" \
232+ && cargo install --locked -- force --git " https://github.com/tcdi /pgx" \
233233 --branch " develop" \
234234 " cargo-pgx"
235235```
0 commit comments