-
-
Notifications
You must be signed in to change notification settings - Fork 249
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fb7ebfb
commit e460d80
Showing
24 changed files
with
49,573 additions
and
40,551 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 = "cargo-pgx" | ||
version = "0.6.0-alpha.2" | ||
version = "0.6.0" | ||
authors = ["ZomboDB, LLC <[email protected]>"] | ||
license = "MIT" | ||
description = "Cargo subcommand for 'pgx' to make Postgres extension development easy" | ||
|
@@ -15,27 +15,27 @@ edition = "2021" | |
|
||
[dependencies] | ||
atty = "0.2.14" | ||
cargo_metadata = "0.15.1" | ||
cargo_metadata = "0.15.2" | ||
cargo_toml = "0.11.8" | ||
clap = { version = "4.0.26", features = [ "env", "suggestions", "cargo", "derive" ] } | ||
clap = { version = "4.0.29", features = [ "env", "suggestions", "cargo", "derive" ] } | ||
clap-cargo = { version = "0.10.0", features = [ "cargo_metadata" ] } | ||
semver = "1.0.14" | ||
owo-colors = { version = "3.5.0", features = [ "supports-colors" ] } | ||
env_proxy = "0.4.1" | ||
num_cpus = "1.14.0" | ||
pgx-pg-config = { path = "../pgx-pg-config", version = "=0.6.0-alpha.2" } | ||
pgx-utils = { path = "../pgx-utils", version = "=0.6.0-alpha.2", features = ["syntax-highlighting"] } | ||
pgx-pg-config = { path = "../pgx-pg-config", version = "=0.6.0" } | ||
pgx-utils = { path = "../pgx-utils", version = "=0.6.0", features = ["syntax-highlighting"] } | ||
prettyplease = "0.1.21" | ||
proc-macro2 = { version = "1.0.47", features = [ "span-locations" ] } | ||
quote = "1.0.21" | ||
rayon = "1.5.3" | ||
rayon = "1.6.0" | ||
regex = "1.7.0" | ||
ureq = "2.5.0" | ||
url = "2.3.1" | ||
serde = { version = "1.0.147", features = [ "derive" ] } | ||
serde_derive = "1.0.147" | ||
serde = { version = "1.0.148", features = [ "derive" ] } | ||
serde_derive = "1.0.148" | ||
serde-xml-rs = "0.5.1" | ||
syn = { version = "1.0.103", features = [ "extra-traits", "full", "fold", "parsing" ] } | ||
syn = { version = "1.0.104", features = [ "extra-traits", "full", "fold", "parsing" ] } | ||
unescape = "0.1.0" | ||
fork = "0.1.20" | ||
libloading = "0.7.4" | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "pgx-macros" | ||
version = "0.6.0-alpha.2" | ||
version = "0.6.0" | ||
authors = ["ZomboDB, LLC <[email protected]>"] | ||
license = "MIT" | ||
description = "Proc Macros for 'pgx'" | ||
|
@@ -18,11 +18,11 @@ proc-macro = true | |
rustc-args = ["--cfg", "docsrs"] | ||
|
||
[dependencies] | ||
pgx-utils = { path = "../pgx-utils", version = "=0.6.0-alpha.2" } | ||
pgx-utils = { path = "../pgx-utils", version = "=0.6.0" } | ||
proc-macro2 = "1.0.47" | ||
quote = "1.0.21" | ||
syn = { version = "1.0.103", features = [ "extra-traits", "full", "fold", "parsing" ] } | ||
syn = { version = "1.0.104", features = [ "extra-traits", "full", "fold", "parsing" ] } | ||
unescape = "0.1.0" | ||
|
||
[dev-dependencies] | ||
serde = { version = "1.0.147", features = ["derive"] } | ||
serde = { version = "1.0.148", features = ["derive"] } |
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-config" | ||
version = "0.6.0-alpha.2" | ||
version = "0.6.0" | ||
authors = ["ZomboDB, LLC <[email protected]>"] | ||
license = "MIT" | ||
description = "A Postgres pg_config wrapper for 'pgx'" | ||
|
@@ -16,8 +16,8 @@ edition = "2021" | |
dirs = "4.0.0" | ||
eyre = "0.6.8" | ||
owo-colors = "3.5.0" | ||
serde = { version = "1.0.147", features = [ "derive" ] } | ||
serde_derive = "1.0.147" | ||
serde_json = "1.0.88" | ||
serde = { version = "1.0.148", features = [ "derive" ] } | ||
serde_derive = "1.0.148" | ||
serde_json = "1.0.89" | ||
toml = "0.5.9" | ||
url = "2.3.1" |
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.6.0-alpha.2" | ||
version = "0.6.0" | ||
authors = ["ZomboDB, LLC <[email protected]>"] | ||
license = "MIT" | ||
description = "Generated Rust bindings for Postgres internals, for use with 'pgx'" | ||
|
@@ -30,19 +30,19 @@ rustdoc-args = ["--cfg", "docsrs"] | |
[dependencies] | ||
memoffset = "0.6.5" | ||
once_cell = "1.16.0" | ||
pgx-macros = { path = "../pgx-macros/", version = "=0.6.0-alpha.2" } | ||
pgx-utils = { path = "../pgx-utils/", version = "=0.6.0-alpha.2" } | ||
pgx-macros = { path = "../pgx-macros/", version = "=0.6.0" } | ||
pgx-utils = { path = "../pgx-utils/", version = "=0.6.0" } | ||
# polyfill until #![feature(strict_provenance)] stabilizes | ||
sptr = "0.3" | ||
libc = "0.2" | ||
|
||
[build-dependencies] | ||
bindgen = { version = "0.60.1", default-features = false, features = ["runtime"] } | ||
pgx-pg-config= { path = "../pgx-pg-config/", version = "=0.6.0-alpha.2" } | ||
pgx-utils = { path = "../pgx-utils/", version = "=0.6.0-alpha.2" } | ||
pgx-pg-config= { path = "../pgx-pg-config/", version = "=0.6.0" } | ||
pgx-utils = { path = "../pgx-utils/", version = "=0.6.0" } | ||
proc-macro2 = "1.0.47" | ||
quote = "1.0.21" | ||
rayon = "1.5.3" | ||
syn = { version = "1.0.103", features = [ "extra-traits", "full", "fold", "parsing" ] } | ||
rayon = "1.6.0" | ||
syn = { version = "1.0.104", features = [ "extra-traits", "full", "fold", "parsing" ] } | ||
eyre = "0.6.8" | ||
shlex = "1.1.0" # shell lexing, also used by many of our deps |
Oops, something went wrong.