From e88b457cb342c114ac78e91250f583e81deda53a Mon Sep 17 00:00:00 2001 From: Xyon Date: Mon, 25 Sep 2023 23:47:28 +0100 Subject: [PATCH] Remove vestigial feature declaration and pre-seed known hosts for deploy --- .gitea/workflows/deploy.yaml | 2 ++ src/main.rs | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index bffe291..f5347d7 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -11,6 +11,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 + - name: Pre-seed known_hosts + run: ssh-keyscan -t rsa badgey >> ~/.ssh/known_hosts - name: Build (Release) run: cargo build --release --color=always - name: Deploy diff --git a/src/main.rs b/src/main.rs index d23ef6a..f45f77c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,5 +1,3 @@ -#![feature(string_remove_matches)] - #[macro_use] extern crate log; pub mod badgey;