-
-
Notifications
You must be signed in to change notification settings - Fork 256
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
18cd4bd
commit 0bdc3ad
Showing
11 changed files
with
63 additions
and
86 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cargo-pgrx" | ||
version = "0.9.2" | ||
version = "0.9.3" | ||
authors = ["ZomboDB, LLC <[email protected]>"] | ||
license = "MIT" | ||
description = "Cargo subcommand for 'pgrx' to make Postgres extension development easy" | ||
|
@@ -17,14 +17,14 @@ edition = "2021" | |
atty = "0.2.14" | ||
cargo_metadata = "0.15.4" | ||
cargo_toml = "0.15.3" | ||
clap = { version = "4.3.1", features = [ "env", "suggestions", "cargo", "derive", "wrap_help" ] } | ||
clap = { version = "4.3.2", features = [ "env", "suggestions", "cargo", "derive", "wrap_help" ] } | ||
clap-cargo = { version = "0.10.0", features = [ "cargo_metadata" ] } | ||
semver = "1.0.17" | ||
owo-colors = { version = "3.5.0", features = [ "supports-colors" ] } | ||
env_proxy = "0.4.1" | ||
num_cpus = "1.15.0" | ||
pgrx-pg-config = { path = "../pgrx-pg-config", version = "=0.9.2" } | ||
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.9.2" } | ||
pgrx-pg-config = { path = "../pgrx-pg-config", version = "=0.9.3" } | ||
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.9.3" } | ||
prettyplease = "0.2.6" | ||
proc-macro2 = { version = "1.0.59", features = [ "span-locations" ] } | ||
quote = "1.0.28" | ||
|
@@ -37,7 +37,7 @@ serde_derive = "1.0.163" | |
serde-xml-rs = "0.6.0" | ||
syn = { version = "2.0.18", features = [ "extra-traits", "full", "fold", "parsing" ] } | ||
unescape = "0.1.0" | ||
fork = "0.1.21" | ||
fork = "0.1.22" | ||
libloading = "0.8.0" | ||
object = "0.31.1" | ||
once_cell = "1.18.0" | ||
|
@@ -47,7 +47,7 @@ tracing = "0.1" | |
tracing-error = "0.2.0" | ||
tracing-subscriber = { version = "0.3.17", features = [ "env-filter" ] } | ||
flate2 = { version = "1.0.26", default-features = false, features = ["rust_backend"] } | ||
tempfile = "3.5.0" | ||
tempfile = "3.6.0" | ||
nix = { version = "0.26", default-features = false, features = ["user"] } | ||
|
||
[features] | ||
|
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 = "pgrx-macros" | ||
version = "0.9.2" | ||
version = "0.9.3" | ||
authors = ["ZomboDB, LLC <[email protected]>"] | ||
license = "MIT" | ||
description = "Proc Macros for 'pgrx'" | ||
|
@@ -21,7 +21,7 @@ rustc-args = ["--cfg", "docsrs"] | |
no-schema-generation = ["pgrx-sql-entity-graph/no-schema-generation"] | ||
|
||
[dependencies] | ||
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.9.2" } | ||
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.9.3" } | ||
proc-macro2 = "1.0.59" | ||
quote = "1.0.28" | ||
syn = { version = "1.0.109", 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 = "pgrx-pg-config" | ||
version = "0.9.2" | ||
version = "0.9.3" | ||
authors = ["ZomboDB, LLC <[email protected]>"] | ||
license = "MIT" | ||
description = "A Postgres pg_config wrapper for '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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "pgrx-pg-sys" | ||
version = "0.9.2" | ||
version = "0.9.3" | ||
authors = ["ZomboDB, LLC <[email protected]>"] | ||
license = "MIT" | ||
description = "Generated Rust bindings for Postgres internals, for use with 'pgrx'" | ||
|
@@ -29,16 +29,16 @@ rustdoc-args = ["--cfg", "docsrs"] | |
|
||
[dependencies] | ||
memoffset = "0.9.0" | ||
pgrx-macros = { path = "../pgrx-macros/", version = "=0.9.2" } | ||
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph/", version = "=0.9.2" } | ||
pgrx-macros = { path = "../pgrx-macros/", version = "=0.9.3" } | ||
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph/", version = "=0.9.3" } | ||
serde = { version = "1.0.163", features = [ "derive" ] } # impls on pub types | ||
# polyfill until #![feature(strict_provenance)] stabilizes | ||
sptr = "0.3" | ||
libc = "0.2" | ||
|
||
[build-dependencies] | ||
bindgen = { version = "0.65.1", default-features = false, features = ["runtime"] } | ||
pgrx-pg-config= { path = "../pgrx-pg-config/", version = "=0.9.2" } | ||
pgrx-pg-config= { path = "../pgrx-pg-config/", version = "=0.9.3" } | ||
proc-macro2 = "1.0.59" | ||
quote = "1.0.28" | ||
syn = { version = "1.0.109", 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 = "pgrx-sql-entity-graph" | ||
version = "0.9.2" | ||
version = "0.9.3" | ||
authors = ["ZomboDB, LLC <[email protected]>"] | ||
license = "MIT" | ||
description = "Sql Entity Graph for `pgrx`" | ||
|
Oops, something went wrong.