Skip to content

Commit 8ff5ff8

Browse files
committed
update: adapt to new upstream template
1 parent f285867 commit 8ff5ff8

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/dependabot.yml

+5
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33

44
version: 2
55
updates:
6+
- package-ecosystem: "github-actions"
7+
directory: "/"
8+
target-branch: main
9+
schedule:
10+
interval: "daily"
611
- package-ecosystem: "cargo"
712
directory: "/"
813
target-branch: main

shell.nix

+2-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
}:
44

55
pkgs.mkShell {
6-
76
buildInputs = [
87
pkgs.rustup
98
];
@@ -17,14 +16,14 @@ pkgs.mkShell {
1716
DATA_DIR="/tmp/rust"
1817
export RUSTUP_HOME="$DATA_DIR/rustup"
1918
export CARGO_HOME="$DATA_DIR/cargo"
20-
export PATH=$CARGO_niHOME/bin:$PATH
19+
export PATH=$CARGO_HOME/bin:$PATH
2120
mkdir -p "$CARGO_HOME"
2221
mkdir -p "$RUSTUP_HOME"
2322
mkdir -p "$DATA_DIR/shell"
2423
2524
rustup default stable
2625
rustup update
27-
cargo fetch
26+
cargo build
2827
2928
echo
3029
echo
@@ -35,5 +34,4 @@ pkgs.mkShell {
3534
echo "$(rustup --version)"
3635
echo "$(cargo --version)"
3736
'';
38-
3937
}

0 commit comments

Comments
 (0)