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 a3b168f commit 1b5b710Copy full SHA for 1b5b710
.github/dependabot.yml
@@ -0,0 +1,6 @@
1
+version: 2
2
+updates:
3
+ - package-ecosystem: "cargo"
4
+ directory: "/"
5
+ schedule:
6
+ interval: "daily"
.github/workflows/install-cross.sh
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+curl -s https://api.github.com/repos/cross-rs/cross/releases/latest \
+ | grep cross-x86_64-unknown-linux-gnu.tar.gz \
+ | cut -d : -f 2,3 \
+ | tr -d \" \
7
+ | wget -qi -
8
9
+tar -zxvf cross-x86_64-unknown-linux-gnu.tar.gz -C /usr/bin
10
+rm -f cross-x86_64-unknown-linux-gnu.tar.gz
11
.gitignore
@@ -3,7 +3,9 @@ nginx_signing.key
overtls-daemon.sh
project.xcworkspace/
xcuserdata/
-.*
+.vscode/
+.VSCodeCounter/
+.env
build/
tmp/
dev/
0 commit comments