Skip to content

Commit 1b5b710

Browse files
committed
missing files
1 parent a3b168f commit 1b5b710

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/bash
2+
3+
curl -s https://api.github.com/repos/cross-rs/cross/releases/latest \
4+
| grep cross-x86_64-unknown-linux-gnu.tar.gz \
5+
| cut -d : -f 2,3 \
6+
| 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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ nginx_signing.key
33
overtls-daemon.sh
44
project.xcworkspace/
55
xcuserdata/
6-
.*
6+
.vscode/
7+
.VSCodeCounter/
8+
.env
79
build/
810
tmp/
911
dev/

0 commit comments

Comments
 (0)