Add extra hint about `diesel` setup

This commit is contained in:
Eric Kidd 2018-07-09 08:20:11 -04:00
parent bc32059eee
commit 79804c01e6
1 changed files with 6 additions and 0 deletions

View File

@ -69,6 +69,12 @@ libsqlite3-sys = { version = "*", features = ["bundled"] }
openssl = "*"
```
For PostgreSQL, you'll also need to include `openssl` in your `main.rs` (in order to avoid linker errors):
```toml
extern crate openssl;
```
See [this PR](https://github.com/sgrif/pq-sys/pull/18) for a discussion of the issues involved in cross-compiling `diesel` and `diesel_codegen`.
## Making static releases with Travis CI and GitHub