Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 17 additions & 18 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions cargo-pgrx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-pgrx"
version = "0.9.3"
version = "0.9.4"
authors = ["ZomboDB, LLC <zombodb@gmail.com>"]
license = "MIT"
description = "Cargo subcommand for 'pgrx' to make Postgres extension development easy"
Expand All @@ -23,17 +23,17 @@ 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.3" }
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.9.3" }
pgrx-pg-config = { path = "../pgrx-pg-config", version = "=0.9.4" }
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.9.4" }
prettyplease = "0.2.6"
proc-macro2 = { version = "1.0.59", features = [ "span-locations" ] }
proc-macro2 = { version = "1.0.60", features = [ "span-locations" ] }
quote = "1.0.28"
rayon = "1.7.0"
regex = "1.8.4"
ureq = "2.6.2"
url = "2.4.0"
serde = { version = "1.0.163", features = [ "derive" ] }
serde_derive = "1.0.163"
serde = { version = "1.0.164", features = [ "derive" ] }
serde_derive = "1.0.164"
serde-xml-rs = "0.6.0"
syn = { version = "2.0.18", features = [ "extra-traits", "full", "fold", "parsing" ] }
unescape = "0.1.0"
Expand Down
4 changes: 2 additions & 2 deletions cargo-pgrx/src/templates/cargo_toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ pg15 = ["pgrx/pg15", "pgrx-tests/pg15" ]
pg_test = []

[dependencies]
pgrx = "=0.9.3"
pgrx = "=0.9.4"

[dev-dependencies]
pgrx-tests = "=0.9.3"
pgrx-tests = "=0.9.4"

[profile.dev]
panic = "unwind"
Expand Down
4 changes: 2 additions & 2 deletions nix/templates/default/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ pg15 = ["pgrx/pg15", "pgrx-tests/pg15" ]
pg_test = []

[dependencies]
pgrx = "=0.9.3"
pgrx = "=0.9.4"

[dev-dependencies]
pgrx-tests = "=0.9.3"
pgrx-tests = "=0.9.4"
tempfile = "3.2.0"
once_cell = "1.7.2"

Expand Down
2 changes: 1 addition & 1 deletion pgrx-examples/aggregate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ bob = []

[dependencies]
pgrx = { path = "../../pgrx", default-features = false }
serde = "1.0.163"
serde = "1.0.164"

[dev-dependencies]
pgrx-tests = { path = "../../pgrx-tests" }
Expand Down
2 changes: 1 addition & 1 deletion pgrx-examples/arrays/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pg_test = []

[dependencies]
pgrx = { path = "../../pgrx", default-features = false }
serde = "1.0.163"
serde = "1.0.164"
rand = "*"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion pgrx-examples/composite_type/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pg_test = []

[dependencies]
pgrx = { path = "../../pgrx", default-features = false }
serde = "1.0.163"
serde = "1.0.164"

[dev-dependencies]
pgrx-tests = { path = "../../pgrx-tests" }
Expand Down
2 changes: 1 addition & 1 deletion pgrx-examples/custom_sql/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pg_test = []

[dependencies]
pgrx = { path = "../../pgrx", default-features = false }
serde = "1.0.163"
serde = "1.0.164"

[dev-dependencies]
pgrx-tests = { path = "../../pgrx-tests" }
Expand Down
2 changes: 1 addition & 1 deletion pgrx-examples/custom_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ no-schema-generation = [ "pgrx/no-schema-generation", "pgrx-tests/no-schema-gene
[dependencies]
pgrx = { path = "../../pgrx", default-features = false }
maplit = "1.0.2"
serde = "1.0.163"
serde = "1.0.164"

[dev-dependencies]
pgrx-tests = { path = "../../pgrx-tests" }
Expand Down
2 changes: 1 addition & 1 deletion pgrx-examples/nostd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pg_test = []

[dependencies]
pgrx = { path = "../../pgrx", default-features = false }
serde = "1.0.163"
serde = "1.0.164"

[dev-dependencies]
pgrx-tests = { path = "../../pgrx-tests" }
Expand Down
2 changes: 1 addition & 1 deletion pgrx-examples/operators/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pg_test = []

[dependencies]
pgrx = { path = "../../pgrx", default-features = false }
serde = "1.0.163"
serde = "1.0.164"

[dev-dependencies]
pgrx-tests = { path = "../../pgrx-tests" }
Expand Down
2 changes: 1 addition & 1 deletion pgrx-examples/schemas/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pg_test = []

[dependencies]
pgrx = { path = "../../pgrx", default-features = false }
serde = "1.0.163"
serde = "1.0.164"

[dev-dependencies]
pgrx-tests = { path = "../../pgrx-tests" }
Expand Down
2 changes: 1 addition & 1 deletion pgrx-examples/shmem/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pg_test = []
[dependencies]
heapless = "0.7.16"
pgrx = { path = "../../pgrx", default-features = false }
serde = { version = "1.0.163", features = [ "derive" ] }
serde = { version = "1.0.164", features = [ "derive" ] }

[dev-dependencies]
pgrx-tests = { path = "../../pgrx-tests" }
Expand Down
8 changes: 4 additions & 4 deletions pgrx-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pgrx-macros"
version = "0.9.3"
version = "0.9.4"
authors = ["ZomboDB, LLC <zombodb@gmail.com>"]
license = "MIT"
description = "Proc Macros for 'pgrx'"
Expand All @@ -21,10 +21,10 @@ 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.3" }
proc-macro2 = "1.0.59"
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.9.4" }
proc-macro2 = "1.0.60"
quote = "1.0.28"
syn = { version = "1.0.109", features = [ "extra-traits", "full", "fold", "parsing" ] }

[dev-dependencies]
serde = { version = "1.0.163", features = ["derive"] } # for Documentation examples
serde = { version = "1.0.164", features = ["derive"] } # for Documentation examples
6 changes: 3 additions & 3 deletions pgrx-pg-config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pgrx-pg-config"
version = "0.9.3"
version = "0.9.4"
authors = ["ZomboDB, LLC <zombodb@gmail.com>"]
license = "MIT"
description = "A Postgres pg_config wrapper for 'pgrx'"
Expand All @@ -17,8 +17,8 @@ dirs = "5.0.1"
eyre = "0.6.8"
pathsearch = "0.2.0"
owo-colors = "3.5.0"
serde = { version = "1.0.163", features = [ "derive" ] }
serde_derive = "1.0.163"
serde = { version = "1.0.164", features = [ "derive" ] }
serde_derive = "1.0.164"
serde_json = "1.0.96"
toml = "0.7.4"
url = "2.4.0"
Expand Down
12 changes: 6 additions & 6 deletions pgrx-pg-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pgrx-pg-sys"
version = "0.9.3"
version = "0.9.4"
authors = ["ZomboDB, LLC <zombodb@gmail.com>"]
license = "MIT"
description = "Generated Rust bindings for Postgres internals, for use with 'pgrx'"
Expand Down Expand Up @@ -29,17 +29,17 @@ rustdoc-args = ["--cfg", "docsrs"]

[dependencies]
memoffset = "0.9.0"
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
pgrx-macros = { path = "../pgrx-macros/", version = "=0.9.4" }
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph/", version = "=0.9.4" }
serde = { version = "1.0.164", 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.3" }
proc-macro2 = "1.0.59"
pgrx-pg-config= { path = "../pgrx-pg-config/", version = "=0.9.4" }
proc-macro2 = "1.0.60"
quote = "1.0.28"
syn = { version = "1.0.109", features = [ "extra-traits", "full", "fold", "parsing" ] }
eyre = "0.6.8"
Expand Down
4 changes: 2 additions & 2 deletions pgrx-sql-entity-graph/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pgrx-sql-entity-graph"
version = "0.9.3"
version = "0.9.4"
authors = ["ZomboDB, LLC <zombodb@gmail.com>"]
license = "MIT"
description = "Sql Entity Graph for `pgrx`"
Expand All @@ -18,7 +18,7 @@ no-schema-generation = []
convert_case = "0.6.0"
eyre = "0.6.8"
petgraph = "0.6.3"
proc-macro2 = { version = "1.0.59", features = [ "span-locations" ] }
proc-macro2 = { version = "1.0.60", features = [ "span-locations" ] }
quote = "1.0.28"
syn = { version = "1.0.109", features = [ "extra-traits", "full", "fold", "parsing" ] }
unescape = "0.1.0"
Expand Down
12 changes: 6 additions & 6 deletions pgrx-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pgrx-tests"
version = "0.9.3"
version = "0.9.4"
authors = ["ZomboDB, LLC <zombodb@gmail.com>"]
license = "MIT"
description = "Test framework for 'pgrx'-based Postgres extensions"
Expand Down Expand Up @@ -37,13 +37,13 @@ clap-cargo = "0.10.0"
owo-colors = "3.5.0"
once_cell = "1.18.0"
libc = "0.2.146"
pgrx-macros = { path = "../pgrx-macros", version = "=0.9.3" }
pgrx-pg-config = { path = "../pgrx-pg-config", version = "=0.9.3" }
pgrx-macros = { path = "../pgrx-macros", version = "=0.9.4" }
pgrx-pg-config = { path = "../pgrx-pg-config", version = "=0.9.4" }
postgres = "0.19.5"
regex = "1.8.4"
serde = "1.0.163"
serde = "1.0.164"
serde_json = "1.0.96"
sysinfo = "0.29.1"
sysinfo = "0.29.2"
eyre = "0.6.8"
thiserror = "1.0"

Expand All @@ -53,4 +53,4 @@ eyre = "0.6.8" # testing functions that return `eyre::Result`
[dependencies.pgrx]
path = "../pgrx"
default-features = false
version = "=0.9.3"
version = "=0.9.4"
Loading