Skip to content

Commit bf2d5f1

Browse files
committed
chore(deps): Update deps
Signed-off-by: dark0dave <[email protected]>
1 parent cfd81dd commit bf2d5f1

File tree

4 files changed

+41
-27
lines changed

4 files changed

+41
-27
lines changed

.envrc-sample

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
use nix

Cargo.lock

+21-21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mod_installer"
3-
version = "9.2.0"
3+
version = "9.2.1"
44
edition = "2021"
55
authors = [ "dark0dave" ]
66
documentation = "https://raw.githubusercontent.com/dark0dave/mod_installer/main/README.md"

shell.nix

+18-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,21 @@
1-
{ pkgs ? import <nixpkgs> {} }:
2-
pkgs.mkShell {
1+
with import <nixpkgs> {};
2+
3+
stdenv.mkDerivation {
4+
name = "rust-env";
5+
nativeBuildInputs = [
6+
# Build-time Additional Dependencies
7+
cargo
8+
pkg-config
9+
rustc
10+
];
311
buildInputs = [
4-
pkgs.git
5-
pkgs.pre-commit
6-
pkgs.rustup
12+
# Run-time Additional Dependencies
13+
git
14+
gnupg
15+
pre-commit
16+
rustup
717
];
18+
19+
# Set Environment Variables
20+
RUST_BACKTRACE = 1;
821
}

0 commit comments

Comments
 (0)