From 9dcde0c913e53ee7f68e38aa5f7d81df9199fb98 Mon Sep 17 00:00:00 2001 From: MikaelUrankar <49529234+MikaelUrankar@users.noreply.github.com> Date: Fri, 20 Mar 2020 13:56:42 +0100 Subject: [PATCH] Add support for armv6, armv7 and aarch64 on FreeBSD (#149) --- Cargo.toml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 6b6b00b..fd1bc04 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -75,6 +75,24 @@ wayland-client = "0.24" wayland-protocols = { version = "0.24", features = ["client"] } tempfile = "3.1.0" +[target.armv6-unknown-freebsd.dependencies] +x11-dl = "2.18.3" +wayland-client = "0.24" +wayland-protocols = { version = "0.24", features = ["client"] } +tempfile = "3.1.0" + +[target.armv7-unknown-freebsd.dependencies] +x11-dl = "2.18.3" +wayland-client = "0.24" +wayland-protocols = { version = "0.24", features = ["client"] } +tempfile = "3.1.0" + +[target.aarch64-unknown-freebsd.dependencies] +x11-dl = "2.18.3" +wayland-client = "0.24" +wayland-protocols = { version = "0.24", features = ["client"] } +tempfile = "3.1.0" + [target.x86_64-unknown-freebsd.dependencies] x11-dl = "2.18.3" wayland-client = "0.24"