diff options
author | Joris | 2025-02-07 11:37:33 +0100 |
---|---|---|
committer | Joris | 2025-02-07 11:37:33 +0100 |
commit | f7afa9cf50a9459f41146ca5cb009eab69b76c5f (patch) | |
tree | c459003eb8aaf600ce35b567f74dd01e83327485 /flake.nix | |
parent | b24dda856ddc1317816f6ab156096528e23d724c (diff) |
Upgrade dependencies
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -2,9 +2,10 @@ inputs = { nixpkgs.url = "github:nixos/nixpkgs"; flake-utils.url = "github:numtide/flake-utils"; - rust-overlay.url = "github:oxalica/rust-overlay"; - rust-overlay.inputs.nixpkgs.follows = "nixpkgs"; - rust-overlay.inputs.flake-utils.follows = "flake-utils"; + rust-overlay = { + url = "github:oxalica/rust-overlay"; + inputs.nixpkgs.follows = "nixpkgs"; + }; }; outputs = { self, nixpkgs, rust-overlay, flake-utils, ... }: @@ -19,10 +20,11 @@ { devShell = mkShell { buildInputs = [ - rust-bin.stable."1.74.0".default - watchexec cargo-watch + cargo-edit + rust-bin.stable."1.84.1".default sqlite + watchexec ]; }; } |