Skip to content

Commit

Permalink
Hygiene: bump default pg version and update several dependencies (#192)
Browse files Browse the repository at this point in the history
* Bump pg default version to 17
* Update several dependency versions to latest
* Deferring for now updating to latest versions of `pgrx` and `rkyv` as
those would require code changes
  • Loading branch information
tjgreen42 authored Jan 17, 2025
1 parent 33d8117 commit fa89f2f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pgvectorscale/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ name = "pgrx_embed_vectorscale"
path = "./src/bin/pgrx_embed.rs"

[features]
default = ["pg16"]
default = ["pg17"]
pg13 = ["pgrx/pg13", "pgrx-tests/pg13"]
pg14 = ["pgrx/pg14", "pgrx-tests/pg14"]
pg15 = ["pgrx/pg15", "pgrx-tests/pg15"]
Expand All @@ -22,19 +22,19 @@ pg_test = []
[dependencies]
memoffset = "0.9.0"
pgrx = "=0.12.5"
rkyv = { version = "0.7.42", features = ["validation"] }
rkyv = { version = "0.7.43", features = ["validation"] }
simdeez = { version = "1.0.8" }
rand = { version = "0.8", features = ["small_rng"] }
pgvectorscale_derive = { path = "pgvectorscale_derive" }
semver = "1.0.22"
semver = "1.0.24"
serial_test = "3.2.0"
once_cell = "1.20.1"

[dev-dependencies]
pgrx-tests = "=0.12.5"
pgrx-pg-config = "=0.12.5"
criterion = "0.5.1"
tempfile = "3.3.0"
tempfile = "3.15.0"

[[bench]]
name = "distance"
Expand Down

0 comments on commit fa89f2f

Please sign in to comment.