-
-
Notifications
You must be signed in to change notification settings - Fork 255
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
a71f8cc
commit 4b9467a
Showing
15 changed files
with
16,673 additions
and
19,212 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.7.0" | ||
version = "0.7.1" | ||
authors = ["ZomboDB, LLC <[email protected]>"] | ||
license = "MIT" | ||
description = "Cargo subcommand for 'pgx' to make Postgres extension development easy" | ||
|
@@ -15,16 +15,16 @@ edition = "2021" | |
|
||
[dependencies] | ||
atty = "0.2.14" | ||
cargo_metadata = "0.15.2" | ||
cargo_metadata = "0.15.3" | ||
cargo_toml = "0.11.8" | ||
clap = { version = "4.1.4", features = [ "env", "suggestions", "cargo", "derive", "wrap_help" ] } | ||
clap-cargo = { version = "0.10.0", features = [ "cargo_metadata" ] } | ||
semver = "1.0.16" | ||
owo-colors = { version = "3.5.0", features = [ "supports-colors" ] } | ||
env_proxy = "0.4.1" | ||
num_cpus = "1.15.0" | ||
pgx-pg-config = { path = "../pgx-pg-config", version = "=0.7.0" } | ||
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph", version = "=0.7.0" } | ||
pgx-pg-config = { path = "../pgx-pg-config", version = "=0.7.1" } | ||
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph", version = "=0.7.1" } | ||
prettyplease = "0.1.23" | ||
proc-macro2 = { version = "1.0.50", features = [ "span-locations" ] } | ||
quote = "1.0.23" | ||
|
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.7.0" | ||
version = "0.7.1" | ||
authors = ["ZomboDB, LLC <[email protected]>"] | ||
license = "MIT" | ||
description = "Proc Macros for 'pgx'" | ||
|
@@ -21,7 +21,7 @@ rustc-args = ["--cfg", "docsrs"] | |
no-schema-generation = ["pgx-sql-entity-graph/no-schema-generation"] | ||
|
||
[dependencies] | ||
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph", version = "=0.7.0" } | ||
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph", version = "=0.7.1" } | ||
proc-macro2 = "1.0.50" | ||
quote = "1.0.23" | ||
syn = { version = "1.0.107", 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "pgx-pg-config" | ||
version = "0.7.0" | ||
version = "0.7.1" | ||
authors = ["ZomboDB, LLC <[email protected]>"] | ||
license = "MIT" | ||
description = "A Postgres pg_config wrapper for 'pgx'" | ||
|
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.7.0" | ||
version = "0.7.1" | ||
authors = ["ZomboDB, LLC <[email protected]>"] | ||
license = "MIT" | ||
description = "Generated Rust bindings for Postgres internals, for use with 'pgx'" | ||
|
@@ -30,16 +30,16 @@ rustdoc-args = ["--cfg", "docsrs"] | |
|
||
[dependencies] | ||
memoffset = "0.6.5" | ||
pgx-macros = { path = "../pgx-macros/", version = "=0.7.0" } | ||
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph/", version = "=0.7.0" } | ||
pgx-macros = { path = "../pgx-macros/", version = "=0.7.1" } | ||
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph/", version = "=0.7.1" } | ||
serde = { version = "1.0.152", features = [ "derive" ] } # impls on pub types | ||
# 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.7.0" } | ||
pgx-pg-config= { path = "../pgx-pg-config/", version = "=0.7.1" } | ||
proc-macro2 = "1.0.50" | ||
quote = "1.0.23" | ||
syn = { version = "1.0.107", features = [ "extra-traits", "full", "fold", "parsing" ] } | ||
|
Oops, something went wrong.