From 2dbd6357183f6a12ceddb5d04c58bbf1580ed1e6 Mon Sep 17 00:00:00 2001 From: hatoo Date: Sat, 6 Jul 2019 21:58:00 +0900 Subject: [PATCH] Add `extern crate openssl;` to crawl to build on musl https://github.com/emk/rust-musl-builder/issues/64#issuecomment-484209412 --- atcoder-problems-backend/src/bin/crawl.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/atcoder-problems-backend/src/bin/crawl.rs b/atcoder-problems-backend/src/bin/crawl.rs index f1c464e8e..439795f81 100644 --- a/atcoder-problems-backend/src/bin/crawl.rs +++ b/atcoder-problems-backend/src/bin/crawl.rs @@ -1,3 +1,5 @@ +extern crate openssl; + use atcoder_problems_backend::{crawler, scraper}; use diesel::pg::PgConnection; use diesel::Connection;