fcc6921ddb
Fixes #27, or at least works around it. This deals with the issues mentioned in https://github.com/sgrif/pq-sys/pull/18, and it relies heavily on ideas from @golddranks and @clux.
13 lines
325 B
TOML
13 lines
325 B
TOML
[package]
|
|
name = "using-diesel"
|
|
version = "0.1.0"
|
|
authors = ["Eric Kidd <git@randomhacks.net>"]
|
|
|
|
[dependencies]
|
|
diesel = { version = "0.16", features = ["postgres"] }
|
|
diesel_codegen = { version = "0.16", features = ["postgres"] }
|
|
openssl-sys = "*"
|
|
|
|
[patch.crates-io]
|
|
pq-sys = { git = 'https://github.com/golddranks/pq-sys' }
|