diff options
author | Anton Blanchard <anton@samba.org> | 2016-01-13 19:54:03 +0000 |
---|---|---|
committer | Anton Blanchard <anton@samba.org> | 2016-01-13 19:58:16 +0000 |
commit | 0c6e4af7c49615eaed60e1f501b12d7a7ee97d5e (patch) | |
tree | 323ed03d122155fad7daa3f04a61f8ae9aefbf1e /libssh2-sys | |
parent | 00af6ead0c3d4b82e05bee4d9963ef3823bcf524 (diff) | |
download | ssh2-rs-0c6e4af7c49615eaed60e1f501b12d7a7ee97d5e.zip |
Add openssl-sys dependency for powerpc64 and powerpc64le
Diffstat (limited to 'libssh2-sys')
-rw-r--r-- | libssh2-sys/Cargo.toml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libssh2-sys/Cargo.toml b/libssh2-sys/Cargo.toml index b9ecec2..fd30c0a 100644 --- a/libssh2-sys/Cargo.toml +++ b/libssh2-sys/Cargo.toml @@ -28,6 +28,10 @@ openssl-sys = ">= 0" openssl-sys = ">= 0" [target.aarch64-unknown-linux-gnu.dependencies] openssl-sys = ">= 0" +[target.powerpc64-unknown-linux-gnu.dependencies] +openssl-sys = ">= 0" +[target.powerpc64le-unknown-linux-gnu.dependencies] +openssl-sys = ">= 0" [target.x86_64-unknown-linux-musl.dependencies] openssl-sys = ">= 0" [target.arm-unknown-linux-gnueabihf.dependencies] |