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 5656 if : runner.os == 'macOS' && matrix.backend == 'postgres'
5757 run : |
5858 brew update
59+ brew uninstall --ignore-dependencies libpq
5960 brew install postgres
6061 /usr/local/opt/postgres/bin/pg_ctl -D /usr/local/var/postgres start
6162 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"
1313
1414[dependencies ]
1515serde = " 1"
16- diesel = { version = " 1.4" , features = [" r2d2" ]}
16+ diesel = { version = " 1.4" , features = [" r2d2" ], default-features = false }
1717juniper = " 0.14"
1818indexmap = " 1"
19- wundergraph_derive = " 0.1"
2019uuid_internal = { version = " 0.7" , optional = true , package = " uuid" }
2120chrono_internal = { version = " 0.4" , optional = true , package = " chrono" }
2221log = { version = " 0.4" , optional = true }
2322paste = " 0.1"
2423thiserror = " 1"
2524
25+ [dependencies .wundergraph_derive ]
26+ version = " 0.1"
27+ path = " ../wundergraph_derive"
28+
29+
2630[dev-dependencies ]
2731wundergraph_example = { path = " ../wundergraph_example" , default-features = false }
2832wundergraph_bench = { path = " ../wundergraph_bench" , default-features = false }
You can’t perform that action at this time.
0 commit comments