-
-
Notifications
You must be signed in to change notification settings - Fork 252
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix a few more references to ZomboDB
- Loading branch information
1 parent
329c146
commit a5c807b
Showing
10 changed files
with
17 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
[package] | ||
name = "cargo-pgrx" | ||
version = "0.9.7" | ||
authors = ["ZomboDB, LLC <[email protected]>"] | ||
authors = ["PgCentralFoundation, Inc. <[email protected]>"] | ||
license = "MIT" | ||
description = "Cargo subcommand for 'pgrx' to make Postgres extension development easy" | ||
homepage = "https://github.com/pgcentralfoundation/pgrx/" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -126,7 +126,7 @@ If a new minor Postgres version is released in the future you can simply run `ca | |
|
||
```shell script | ||
cargo-pgrx-init 0.5.0 | ||
ZomboDB, LLC <[email protected]> | ||
PgCentralFoundation, Inc. <[email protected]> | ||
Initialize pgrx development environment for the first time | ||
|
||
USAGE: | ||
|
@@ -175,7 +175,7 @@ If you'd like to create a "background worker" instead, specify the `--bgworker` | |
```shell script | ||
$ cargo pgrx new --help | ||
cargo-pgrx-new 0.5.0 | ||
ZomboDB, LLC <[email protected]> | ||
PgCentralFoundation, Inc. <[email protected]> | ||
Create a new extension crate | ||
USAGE: | ||
|
@@ -291,7 +291,7 @@ For Postgres installations which are already on your computer, `cargo pgrx run` | |
```shell script | ||
$ cargo pgrx run --help | ||
cargo-pgrx-run 0.5.0 | ||
ZomboDB, LLC <[email protected]> | ||
PgCentralFoundation, Inc. <[email protected]> | ||
Compile/install extension to a pgrx-managed Postgres instance and start psql | ||
USAGE: | ||
|
@@ -366,7 +366,7 @@ the specified version of Postgres isn't running, it'll be automatically started. | |
```shell script | ||
cargo-pgrx-connect 0.5. | ||
ZomboDB, LLC <[email protected]> | ||
PgCentralFoundation, Inc. <[email protected]> | ||
Connect, via psql, to a Postgres instance | ||
USAGE: | ||
|
@@ -427,7 +427,7 @@ By default, `cargo pgrx install` builds your extension in debug mode. Specifying | |
```shell script | ||
$ cargo pgrx install --help | ||
cargo-pgrx-install 0.5.0 | ||
ZomboDB, LLC <[email protected]> | ||
PgCentralFoundation, Inc. <[email protected]> | ||
Install the extension from the current crate to the Postgres specified by whatever `pg_config` is | ||
currently on your $PATH | ||
|
@@ -515,7 +515,7 @@ make to the database are not preserved. | |
|
||
```shell script | ||
cargo-pgrx-test 0.5.0 | ||
ZomboDB, LLC <[email protected]> | ||
PgCentralFoundation, Inc. <[email protected]> | ||
Run the test suite for this crate | ||
USAGE: | ||
|
@@ -598,7 +598,7 @@ distobutions or MacOS Postgres installations. | |
```shell script | ||
$ cargo pgrx package --help | ||
cargo-pgrx-package 0.5.0 | ||
ZomboDB, LLC <[email protected]> | ||
PgCentralFoundation, Inc. <[email protected]> | ||
Create an installation package directory | ||
|
||
USAGE: | ||
|
@@ -654,7 +654,7 @@ If you just want to look at the full extension schema that pgrx will generate, u | |
```shell script | ||
$ cargo pgrx schema --help | ||
cargo-pgrx-schema 0.5.0 | ||
ZomboDB, LLC <[email protected]> | ||
PgCentralFoundation, Inc. <[email protected]> | ||
Generate extension schema files | ||
|
||
USAGE: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
[package] | ||
name = "pgrx-macros" | ||
version = "0.9.7" | ||
authors = ["ZomboDB, LLC <[email protected]>"] | ||
authors = ["PgCentralFoundation, Inc. <[email protected]>"] | ||
license = "MIT" | ||
description = "Proc Macros for 'pgrx'" | ||
homepage = "https://github.com/pgcentralfoundation/pgrx/" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
[package] | ||
name = "pgrx-pg-config" | ||
version = "0.9.7" | ||
authors = ["ZomboDB, LLC <[email protected]>"] | ||
authors = ["PgCentralFoundation, Inc. <[email protected]>"] | ||
license = "MIT" | ||
description = "A Postgres pg_config wrapper for 'pgrx'" | ||
homepage = "https://github.com/pgcentralfoundation/pgrx/" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
[package] | ||
name = "pgrx-pg-sys" | ||
version = "0.9.7" | ||
authors = ["ZomboDB, LLC <[email protected]>"] | ||
authors = ["PgCentralFoundation, Inc. <[email protected]>"] | ||
license = "MIT" | ||
description = "Generated Rust bindings for Postgres internals, for use with 'pgrx'" | ||
homepage = "https://github.com/pgcentralfoundation/pgrx/" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
[package] | ||
name = "pgrx-sql-entity-graph" | ||
version = "0.9.7" | ||
authors = ["ZomboDB, LLC <[email protected]>"] | ||
authors = ["PgCentralFoundation, Inc. <[email protected]>"] | ||
license = "MIT" | ||
description = "Sql Entity Graph for `pgrx`" | ||
homepage = "https://github.com/pgcentralfoundation/pgrx/" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
[package] | ||
name = "pgrx-tests" | ||
version = "0.9.7" | ||
authors = ["ZomboDB, LLC <[email protected]>"] | ||
authors = ["PgCentralFoundation, Inc. <[email protected]>"] | ||
license = "MIT" | ||
description = "Test framework for 'pgrx'-based Postgres extensions" | ||
homepage = "https://github.com/pgcentralfoundation/pgrx/" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
name = "pgrx-version-updater" | ||
version = "0.1.1" | ||
edition = "2021" | ||
authors = ["ZomboDB, LLC <[email protected]>"] | ||
authors = ["PgCentralFoundation, Inc. <[email protected]>"] | ||
license = "MIT" | ||
description = "Standalone tool to update PGRX Cargo.toml versions and dependencies in preparation for a release." | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
[package] | ||
name = "pgrx" | ||
version = "0.9.7" | ||
authors = ["ZomboDB, LLC <[email protected]>"] | ||
authors = ["PgCentralFoundation, Inc. <[email protected]>"] | ||
license = "MIT" | ||
description = "pgrx: A Rust framework for creating Postgres extensions" | ||
homepage = "https://github.com/pgcentralfoundation/pgrx/" | ||
|