We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdaa092 commit 4eb50aeCopy full SHA for 4eb50ae
plotly_kaleido/build.rs
@@ -10,10 +10,14 @@ use std::process::Command;
10
11
use directories::ProjectDirs;
12
13
-#[cfg(target_os = "linux")]
+#[cfg(all(target_arch = "x86_64", target_os = "linux"))]
14
const KALEIDO_URL: &str =
15
"https://github.com/plotly/Kaleido/releases/download/v0.2.1/kaleido_linux_x64.zip";
16
17
+#[cfg(all(target_arch = "aarch64", target_os = "linux"))]
18
+const KALEIDO_URL: &str =
19
+ "https://github.com/plotly/Kaleido/releases/download/v0.2.1/kaleido_linux_arm64.zip";
20
+
21
#[cfg(target_os = "windows")]
22
23
"https://github.com/plotly/Kaleido/releases/download/v0.2.1/kaleido_win_x64.zip";
0 commit comments