-
-
Notifications
You must be signed in to change notification settings - Fork 248
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update version in cargo-pgx' cargo_toml template * cargo-pgx command output needs an additional space for padding/alignment * upgrade dependencies * fix binding function name warnings, revert hash32 dep to 0.1.1, update rust bindings as built on mac Co-authored-by: Eric B. Ridge <[email protected]>
- Loading branch information
1 parent
2b27faa
commit e12d8e8
Showing
25 changed files
with
181 additions
and
319 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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.1.20" | ||
version = "0.1.21" | ||
authors = ["ZomboDB, LLC <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT" | ||
|
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.1.20" | ||
version = "0.1.21" | ||
authors = ["ZomboDB, LLC <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT" | ||
|
@@ -19,12 +19,12 @@ 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.1.20"} | ||
pgx-utils = { path = "../pgx-utils", version = "0.1.21"} | ||
proc-macro2 = { version = "1.0.26", features = [ "span-locations" ] } | ||
quote = "1.0.9" | ||
rayon = "1.5.0" | ||
regex = "1.4.5" | ||
regex = "1.5.2" | ||
rttp_client = { version = "0.1.0", features = ["tls-native"] } | ||
syn = { version = "1.0.69", features = [ "extra-traits", "full", "fold", "parsing" ] } | ||
syn = { version = "1.0.71", features = [ "extra-traits", "full", "fold", "parsing" ] } | ||
unescape = "0.1.0" | ||
fork = "0.1.18" |
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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-macros" | ||
version = "0.1.20" | ||
version = "0.1.21" | ||
authors = ["ZomboDB, LLC <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT" | ||
|
@@ -14,8 +14,8 @@ readme = "README.md" | |
proc-macro = true | ||
|
||
[dependencies] | ||
pgx-utils = { path = "../pgx-utils", version = "0.1.20"} | ||
pgx-utils = { path = "../pgx-utils", version = "0.1.21"} | ||
proc-macro2 = "1.0.26" | ||
quote = "1.0.9" | ||
syn = { version = "1.0.69", features = [ "extra-traits", "full", "fold", "parsing" ] } | ||
syn = { version = "1.0.71", features = [ "extra-traits", "full", "fold", "parsing" ] } | ||
unescape = "0.1.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "pgx-pg-sys" | ||
version = "0.1.20" | ||
version = "0.1.21" | ||
authors = ["ZomboDB, LLC <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT" | ||
|
@@ -23,17 +23,17 @@ no-default-features = true | |
targets = ["x86_64-unknown-linux-gnu"] | ||
|
||
[dependencies] | ||
memoffset = "0.6.1" | ||
memoffset = "0.6.3" | ||
once_cell = "1.7.2" | ||
pgx-macros = { path = "../pgx-macros/", version = "0.1.20"} | ||
pgx-macros = { path = "../pgx-macros/", version = "0.1.21"} | ||
|
||
[build-dependencies] | ||
bindgen = "0.57.0" | ||
bindgen = "0.58.1" | ||
build-deps = "0.1.4" | ||
colored = "2.0.0" | ||
num_cpus = "1.13.0" | ||
pgx-utils = { path = "../pgx-utils/", version = "0.1.20"} | ||
proc-macro2 = "1.0.24" | ||
pgx-utils = { path = "../pgx-utils/", version = "0.1.21"} | ||
proc-macro2 = "1.0.26" | ||
quote = "1.0.9" | ||
rayon = "1.5.0" | ||
syn = { version = "1.0.64", features = [ "extra-traits", "full", "fold", "parsing" ] } | ||
syn = { version = "1.0.71", features = [ "extra-traits", "full", "fold", "parsing" ] } |
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.