From df33be68d84bff2261f92af5d0c11674b8e76873 Mon Sep 17 00:00:00 2001 From: Andrey Tkachenko Date: Tue, 4 Jan 2022 15:17:36 +0400 Subject: [PATCH] Fix for #1 --- build.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build.rs b/build.rs index eb13874..921cd27 100644 --- a/build.rs +++ b/build.rs @@ -6,8 +6,7 @@ use tar::Archive; use curl::easy::Easy; use std::io::Write; -const OPENFST_SRC: &str = "http://www.openfst.org/twiki/pub/FST/FstDownload/openfst-1.6.7.tar.gz"; - +const OPENFST_SRC: &str = "https://www.openfst.org/twiki/pub/FST/FstDownload/openfst-1.6.7.tar.gz"; fn download>(source_url: &str, target_file: P) -> anyhow::Result<()> { let f = fs::File::create(&target_file)?;