Skip to content

Commit

Permalink
dev/rust.nix: remove cargo-edit from extraPackages
Browse files Browse the repository at this point in the history
cargo-edit has been added to upstream cargo

See also: gh:killercup/cargo-edit/issues/568
  • Loading branch information
evanjs committed Feb 12, 2024
1 parent f624d39 commit 01ade9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/new-modules/dev/rust.nix
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ in

extraPackages = mkOption {
type = types.nullOr (types.listOf types.package);
default = [ pkgs.cargo-edit pkgs.cargo-update ];
example = [ pkgs.cargo-edit pkgs.cargo-license pkgs.cargo-generate ];
default = [ pkgs.cargo-update ];
example = [ pkgs.cargo-license pkgs.cargo-generate ];
description = "Packages to install in addition to the Rust toolchain and any configured plugins";
};
};
Expand Down

0 comments on commit 01ade9a

Please sign in to comment.