Skip to content

Commit

Permalink
upgrade dependencies, and change workflow tests to cache cargo based …
Browse files Browse the repository at this point in the history
…on the hash of Cargo.toml files
  • Loading branch information
eeeebbbbrrrr committed Aug 3, 2020
1 parent d7d01cf commit 8ac112a
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
~/.cargo/git
~/.cargo/cargo-pgx
target
key: ${{ matrix.os }}-cargo-v2
key: ${{ matrix.os }}-cargo-${{ hashFiles('~/work/pgx/pgx/**/Cargo.toml') }}

- name: cache cargo pgx init
id: cargo-pgx-init-cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
~/.cargo/git
~/.cargo/cargo-pgx
target
key: ${{ matrix.os }}-cargo-v2
key: ${{ matrix.os }}-cargo-${{ hashFiles('~/work/pgx/pgx/**/Cargo.toml') }}

- name: cache cargo pgx init
id: cargo-pgx-init-cache
Expand Down
2 changes: 1 addition & 1 deletion cargo-pgx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ quote = "1.0.7"
rayon = "1.3.1"
regex = "1.3.9"
rttp_client = { version = "0.1.0", features = ["tls-native"] }
syn = { version = "1.0.35", features = [ "extra-traits", "full", "fold", "parsing" ] }
syn = { version = "1.0.36", features = [ "extra-traits", "full", "fold", "parsing" ] }
unescape = "0.1.0"
2 changes: 1 addition & 1 deletion pgx-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ pgx-utils = { path = "../pgx-utils", version= "^0.0.8"}
proc-macro2 = "1.0.19"
quote = "1.0.7"
regex = "1.3.9"
syn = { version = "1.0.35", features = [ "extra-traits", "full", "fold", "parsing" ] }
syn = { version = "1.0.36", features = [ "extra-traits", "full", "fold", "parsing" ] }
unescape = "0.1.0"
2 changes: 1 addition & 1 deletion pgx-pg-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ pgx-utils = { path = "../pgx-utils/", version= "^0.0.8"}
proc-macro2 = "1.0.19"
quote = "1.0.7"
rayon = "1.3.1"
syn = { version = "1.0.35", features = [ "extra-traits", "full", "fold", "parsing" ] }
syn = { version = "1.0.36", features = [ "extra-traits", "full", "fold", "parsing" ] }
2 changes: 1 addition & 1 deletion pgx-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ no-default-features = true
[dependencies]
colored = "2.0.0"
lazy_static = "1.4.0"
libc = "0.2.73"
libc = "0.2.74"
pgx = { path = "../pgx", default-features = false, version= "^0.0.8"}
pgx-macros = { path = "../pgx-macros", version= "^0.0.8"}
pgx-utils = { path = "../pgx-utils", version= "^0.0.8"}
Expand Down
2 changes: 1 addition & 1 deletion pgx-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ quote = "1.0.7"
regex = "1.3.9"
serde = "1.0.114"
serde_derive = "1.0.114"
syn = { version = "1.0.35", features = [ "extra-traits", "full", "fold", "parsing" ] }
syn = { version = "1.0.36", features = [ "extra-traits", "full", "fold", "parsing" ] }
toml = "0.5.6"
unescape = "0.1.0"

0 comments on commit 8ac112a

Please sign in to comment.