Skip to content

Commit

Permalink
these all need versions for crates.io to publish
Browse files Browse the repository at this point in the history
  • Loading branch information
eeeebbbbrrrr committed Aug 29, 2021
1 parent 977b6a5 commit e4ed87a
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion cargo-pgx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ clap = { version = "2.33.3", features = [ "yaml" ] }
colored = "2.0.0"
env_proxy = "0.4.1"
num_cpus = "1.13.0"
pgx-utils = { path = "../pgx-utils", version = "0.1.21"}
pgx-utils = { path = "../pgx-utils", version = "0.1.22" }
proc-macro2 = { version = "1.0.28", features = [ "span-locations" ] }
quote = "1.0.9"
rayon = "1.5.1"
Expand Down
2 changes: 1 addition & 1 deletion pgx-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ readme = "README.md"
proc-macro = true

[dependencies]
pgx-utils = { path = "../pgx-utils" }
pgx-utils = { path = "../pgx-utils", version = "0.1.22" }
proc-macro2 = "1.0.28"
quote = "1.0.9"
syn = { version = "1.0.75", features = [ "extra-traits", "full", "fold", "parsing" ] }
Expand Down
4 changes: 2 additions & 2 deletions pgx-pg-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
memoffset = "0.6.4"
once_cell = "1.8.0"
pgx-macros = { path = "../pgx-macros/" }
pgx-macros = { path = "../pgx-macros/", version = "0.1.22" }

[build-dependencies]
bindgen = "0.59.1"
build-deps = "0.1.4"
colored = "2.0.0"
num_cpus = "1.13.0"
pgx-utils = { path = "../pgx-utils/" }
pgx-utils = { path = "../pgx-utils/", version = "0.1.22" }
proc-macro2 = "1.0.28"
quote = "1.0.9"
rayon = "1.5.1"
Expand Down
6 changes: 3 additions & 3 deletions pgx-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ no-default-features = true
colored = "2.0.0"
lazy_static = "1.4.0"
libc = "0.2.101"
pgx = { path = "../pgx", default-features = false, version= "0.1.20"}
pgx-macros = { path = "../pgx-macros", version= "0.1.20"}
pgx-utils = { path = "../pgx-utils", version= "0.1.20"}
pgx = { path = "../pgx", default-features = false, version= "0.1.22" }
pgx-macros = { path = "../pgx-macros", version= "0.1.22" }
pgx-utils = { path = "../pgx-utils", version= "0.1.22" }
postgres = "0.19.1"
regex = "1.5.4"
serde = "1.0.130"
Expand Down
4 changes: 2 additions & 2 deletions pgx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ no-default-features = true
enum-primitive-derive = "0.2.1"
num-traits = "0.2.14"
seahash = "4.1.0"
pgx-macros = { path = "../pgx-macros/" }
pgx-pg-sys = { path = "../pgx-pg-sys" }
pgx-macros = { path = "../pgx-macros/", version = "0.1.22" }
pgx-pg-sys = { path = "../pgx-pg-sys", version = "0.1.22" }
serde = { version = "1.0.130", features = [ "derive" ] }
serde_cbor = "0.11.2"
serde_json = "1.0.67"
Expand Down

0 comments on commit e4ed87a

Please sign in to comment.