Skip to content

Commit 65c3691

Browse files
committed
Fix #45
1 parent a9ab2d3 commit 65c3691

File tree

5 files changed

+3
-5
lines changed

5 files changed

+3
-5
lines changed

.github/workflows/ci.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,6 @@ jobs:
5656
if: runner.os == 'macOS' && matrix.backend == 'postgres'
5757
run: |
5858
brew update
59-
brew uninstall --ignore-dependencies libpq
60-
brew install postgres
6159
/usr/local/opt/postgres/bin/pg_ctl -D /usr/local/var/postgres start
6260
sleep 3
6361
/usr/local/opt/postgres/bin/createuser -s postgres
@@ -149,7 +147,7 @@ jobs:
149147
- uses: actions/checkout@v1
150148
- uses: actions-rs/toolchain@v1
151149
with:
152-
toolchain: nightly-2019-10-03
150+
toolchain: 1.42.0
153151
profile: minimal
154152
components: clippy, rustfmt
155153
- name: Cache cargo registry

rust-toolchain

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nightly-2019-10-03
1+
1.42.0

wundergraph_cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ reqwest = "0.9"
2323
serde_json = "1"
2424

2525
[features]
26-
default = ["postgres"]
26+
default = ["postgres", "sqlite"]
2727
sqlite = ["diesel/sqlite"]
2828
postgres = ["diesel/postgres"]

0 commit comments

Comments
 (0)