Skip to content

Commit

Permalink
upgrade all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
eeeebbbbrrrr committed Oct 16, 2024
1 parent 123b2b0 commit f7442d5
Show file tree
Hide file tree
Showing 11 changed files with 1,013 additions and 662 deletions.
1,613 changes: 982 additions & 631 deletions Cargo.lock

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,23 +62,23 @@ pgrx-pg-config = { path = "./pgrx-pg-config", version = "=0.12.6" }
pgrx-bindgen = { path = "./pgrx-bindgen", version = "0.12.6" }

cargo_metadata = "0.18.0"
cargo-edit = "0.12.2" # format-preserving edits to cargo.toml
cargo_toml = "0.19" # used for building projects
cargo-edit = "0.13.0" # format-preserving edits to cargo.toml
cargo_toml = "0.20" # used for building projects
clap-cargo = { version = "0.14.0", features = [ "cargo_metadata" ] }
eyre = "~0.6.12" # simplifies error-handling
libc = "0.2" # FFI compat
owo-colors = { version = "4.0", features = [ "supports-colors" ] } # for output highlighting
proc-macro2 = { version = "1.0.78", features = [ "span-locations" ] }
quote = "1.0.33"
regex = "1.1" # used for build/test
owo-colors = { version = "4.1", features = [ "supports-colors" ] } # for output highlighting
proc-macro2 = { version = "1.0.88", features = [ "span-locations" ] }
quote = "1.0.37"
regex = "1.11" # used for build/test
serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0"
syn = { version = "2", features = [ "extra-traits", "full", "parsing" ] }
toml = "0.8" # our config files
toml_edit = "0.19.14" # format-preserving edits to toml files, used with cargo-edit
toml_edit = "0.22.22" # format-preserving edits to toml files, used with cargo-edit
thiserror = "1"
unescape = "0.1.0" # for escaped-character-handling
url = "2.4.1" # the non-existent std::web
url = "2.5.2" # the non-existent std::web
walkdir = "2" # directory recursion

[profile.dev]
Expand Down
16 changes: 8 additions & 8 deletions cargo-pgrx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,30 +37,30 @@ toml.workspace = true
toml_edit.workspace = true

clap = { version = "4.4.2", features = [ "env", "suggestions", "cargo", "derive", "wrap_help" ] }
jobslot = "0.2.12" # as seen in gmake -j{N}
semver = "1.0.20" # checking pgrx versions match
tempfile = "3.8.0"
jobslot = "0.2.19" # as seen in gmake -j{N}
semver = "1.0.23" # checking pgrx versions match
tempfile = "3.13.0"

# SQL schema generation
object = { version = "0.32.1", default-features = false, features = [ "std" ] }
object = { version = "0.36.5", default-features = false, features = [ "std" ] }
proc-macro2.workspace = true
quote.workspace = true

# emit better diagnostics
color-eyre = "0.6.2"
color-eyre = "0.6.3"
eyre.workspace = true
owo-colors.workspace = true
tracing = "0.1"
tracing-error = "0.2.0"
tracing-subscriber = { version = "0.3.17", features = [ "env-filter" ] }
tracing-subscriber = { version = "0.3.18", features = [ "env-filter" ] }

# for downloading/unpacking things from the Postgres file servers
bzip2 = "0.4.4"
env_proxy = "0.4.1"
serde.workspace = true
serde-xml-rs = "0.6.0"
tar = "0.4.40"
ureq = { version = "2.8.0", default-features = false, features = [ "gzip" ] }
tar = "0.4.42"
ureq = { version = "2.10.1", default-features = false, features = [ "gzip" ] }
url.workspace = true

[features]
Expand Down
4 changes: 2 additions & 2 deletions pgrx-bindgen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ walkdir.workspace = true

bindgen = { version = "0.70.1", default-features = false, features = ["experimental", "runtime"] }
clang-sys = { version = "1", features = ["clang_6_0", "runtime"] }
quote = "1.0.33"
quote = "1.0.37"
shlex = "1.3" # shell lexing, also used by many of our deps
cc = "1.0"
cc = "1.1"
2 changes: 1 addition & 1 deletion pgrx-examples/bad_ideas/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ pg_test = []
[dependencies]
pgrx = { path = "../../pgrx", default-features = false }
rand = "0.8.5"
ureq = "2.8.0"
ureq = "2.10.1"

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

[dependencies]
pgrx = { path = "../../pgrx", default-features = false }
libflate = "2.0.0"
libflate = "2.1.0"

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

[dependencies]
pgrx = { path = "../../pgrx", default-features = false }
serde = "1.0.209"
serde = "1.0.210"
serde_json = "1.0.128"

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions pgrx-sql-entity-graph/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ syn.workspace = true
thiserror.workspace = true

convert_case = "0.6.0"
petgraph = "0.6.4"
petgraph = "0.6.5"
unescape = "0.1.0" # for escaped-character-handling

# colorized sql output
owo-colors = { optional = true, workspace = true }
syntect = { version = "5.1.0", default-features = false, features = ["default-fancy"], optional = true }
syntect = { version = "5.2.0", default-features = false, features = ["default-fancy"], optional = true }

[lints.clippy]
assigning-clones = "allow" # wrong diagnosis and wrong suggestions
Expand Down
4 changes: 2 additions & 2 deletions pgrx-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ serde_json.workspace = true
thiserror.workspace = true

paste = "1"
postgres = "0.19.7"
postgres = "0.19.9"
proptest = { version = "1", optional = true }
sysinfo = "0.30.10"
sysinfo = "0.32.0"
rand = "0.8.5"

[dependencies.pgrx] # Not unified in workspace due to default-features key
Expand Down
10 changes: 5 additions & 5 deletions pgrx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@ pgrx-sql-entity-graph.workspace = true
thiserror.workspace = true # error handling and logging

# used to internally impl things
once_cell = "1.18.0" # polyfill until std::lazy::OnceCell stabilizes
uuid = { version = "1.4.1", features = ["v4"] } # PgLwLock and shmem
enum-map = "2.6.3"
once_cell = "1.20.2" # polyfill until std::lazy::OnceCell stabilizes
uuid = { version = "1.11.0", features = ["v4"] } # PgLwLock and shmem
enum-map = "2.7.3"

# exposed in public API
atomic-traits = "0.3.0" # PgAtomic and shmem init
bitflags = "2.4.0" # BackgroundWorker
atomic-traits = "0.4.0" # PgAtomic and shmem init
bitflags = "2.6.0" # BackgroundWorker
bitvec = "1.0" # processing array nullbitmaps
heapless = "0.8" # shmem and PgLwLock
libc.workspace = true # FFI type compat
Expand Down
2 changes: 1 addition & 1 deletion tools/version-updater/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ clap = { version = "4.4.2", features = [ "env", "derive" ] }
owo-colors = "4"
rustc-hash = "2"
toml = "0.8.19"
toml_edit = { version = "0.22" }
toml_edit.workspace = true
walkdir = "2"

[workspace]

0 comments on commit f7442d5

Please sign in to comment.