diff options
| author | gentoo90 <[email protected]> | 2015-12-18 23:18:03 +0200 |
|---|---|---|
| committer | gentoo90 <[email protected]> | 2015-12-18 23:18:03 +0200 |
| commit | 9436027866412bbb73f56a0b8427f431bbfcc4b3 (patch) | |
| tree | c96cdf2aa481677c764641951d85f645eff53349 | |
| parent | Merge branch 'release' (diff) | |
| download | rust-openssl-9436027866412bbb73f56a0b8427f431bbfcc4b3.tar.xz rust-openssl-9436027866412bbb73f56a0b8427f431bbfcc4b3.zip | |
Fix Cargo.toml to actually depend on gdi32-sys and user32-sys
| -rw-r--r-- | openssl-sys/Cargo.toml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/openssl-sys/Cargo.toml b/openssl-sys/Cargo.toml index eee9312c..91465667 100644 --- a/openssl-sys/Cargo.toml +++ b/openssl-sys/Cargo.toml @@ -40,15 +40,15 @@ libressl-pnacl-sys = "2.1.0" libressl-pnacl-sys = "2.1.0" # Only here to make sure we link to these in a static build on Windows -[target.i686-pc-windows-gnu] +[target.i686-pc-windows-gnu.dependencies] user32-sys = "0.1" gdi32-sys = "0.1" -[target.x86_64-pc-windows-gnu] +[target.x86_64-pc-windows-gnu.dependencies] user32-sys = "0.1" gdi32-sys = "0.1" -[target.i686-pc-windows-msvc] +[target.i686-pc-windows-msvc.dependencies] user32-sys = "0.1" gdi32-sys = "0.1" -[target.x86_64-pc-windows-msvc] +[target.x86_64-pc-windows-msvc.dependencies] user32-sys = "0.1" gdi32-sys = "0.1" |