Add extra hint about diesel
setup
This commit is contained in:
parent
bc32059eee
commit
79804c01e6
|
@ -69,6 +69,12 @@ libsqlite3-sys = { version = "*", features = ["bundled"] }
|
||||||
openssl = "*"
|
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`.
|
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
|
## Making static releases with Travis CI and GitHub
|
||||||
|
|
Loading…
Reference in a new issue