-
-
Notifications
You must be signed in to change notification settings - Fork 254
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support arbitrary versions of Postgres, and add PG13 support (#59)
- Loading branch information
1 parent
b019d26
commit 8354093
Showing
80 changed files
with
210,676 additions
and
78,632 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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "pgx-parent" | ||
version = "0.0.18" | ||
version = "0.1.1" | ||
authors = ["ZomboDB, LLC <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT" | ||
|
@@ -33,13 +33,14 @@ exclude = [ | |
|
||
[features] | ||
default = [ ] | ||
pg10 = [ "pgx/pg10", "pgx-pg-sys/pg10" ] | ||
pg11 = [ "pgx/pg11", "pgx-pg-sys/pg11" ] | ||
pg12 = [ "pgx/pg12", "pgx-pg-sys/pg12" ] | ||
pg10 = [ "pgx/pg10", "pgx-pg-sys/pg10", "pgx-tests/pg10" ] | ||
pg11 = [ "pgx/pg11", "pgx-pg-sys/pg11", "pgx-tests/pg11" ] | ||
pg12 = [ "pgx/pg12", "pgx-pg-sys/pg12", "pgx-tests/pg12" ] | ||
pg13 = [ "pgx/pg13", "pgx-pg-sys/pg13", "pgx-tests/pg13" ] | ||
pg_test = [ "pgx-tests/pg_test" ] | ||
|
||
[package.metadata.docs.rs] | ||
features = ["pg12"] | ||
features = ["pg13"] | ||
no-default-features = true | ||
|
||
[dependencies] | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cargo-pgx" | ||
version = "0.0.18" | ||
version = "0.1.1" | ||
authors = ["ZomboDB, LLC <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT" | ||
|
@@ -15,7 +15,7 @@ clap = { version = "2.33.3", features = [ "yaml" ] } | |
colored = "2.0.0" | ||
env_proxy = "0.4.1" | ||
num_cpus = "1.13.0" | ||
pgx-utils = { path = "../pgx-utils", version = "^0.0.18"} | ||
pgx-utils = { path = "../pgx-utils", version = "^0.1.1"} | ||
proc-macro2 = { version = "1.0.24", features = [ "span-locations" ] } | ||
quote = "1.0.7" | ||
rayon = "1.5.0" | ||
|
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
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
Oops, something went wrong.