File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 56
56
if : runner.os == 'macOS' && matrix.backend == 'postgres'
57
57
run : |
58
58
brew update
59
+ brew uninstall --ignore-dependencies libpq
59
60
brew install postgres
60
61
/usr/local/opt/postgres/bin/pg_ctl -D /usr/local/var/postgres start
61
62
sleep 3
Original file line number Diff line number Diff line change @@ -13,16 +13,20 @@ description = "A GraphQL ORM build on top of diesel"
13
13
14
14
[dependencies ]
15
15
serde = " 1"
16
- diesel = { version = " 1.4" , features = [" r2d2" ]}
16
+ diesel = { version = " 1.4" , features = [" r2d2" ], default-features = false }
17
17
juniper = " 0.14"
18
18
indexmap = " 1"
19
- wundergraph_derive = " 0.1"
20
19
uuid_internal = { version = " 0.7" , optional = true , package = " uuid" }
21
20
chrono_internal = { version = " 0.4" , optional = true , package = " chrono" }
22
21
log = { version = " 0.4" , optional = true }
23
22
paste = " 0.1"
24
23
thiserror = " 1"
25
24
25
+ [dependencies .wundergraph_derive ]
26
+ version = " 0.1"
27
+ path = " ../wundergraph_derive"
28
+
29
+
26
30
[dev-dependencies ]
27
31
wundergraph_example = { path = " ../wundergraph_example" , default-features = false }
28
32
wundergraph_bench = { path = " ../wundergraph_bench" , default-features = false }
You can’t perform that action at this time.
0 commit comments