diff options
Diffstat (limited to 'shell.nix')
-rw-r--r-- | shell.nix | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/shell.nix b/shell.nix index 75fd790..91b2c54 100644 --- a/shell.nix +++ b/shell.nix @@ -1,15 +1,18 @@ { mkShell, rustc, cargo, rust-analyzer, clippy, rustfmt -, cargo-watch, cargo-edit, cargo-outdated, cargo-crev +, cargo-watch, cargo-edit, cargo-outdated +, cargo-crev, cargo-audit , xh, systemfd, tokio-console -, pkg-config, protobuf, typescript +, pkg-config, protobuf, typescript, typescript-language-server }: mkShell { name = "rust-dev-shell"; nativeBuildInputs = [ rustc cargo rust-analyzer clippy rustfmt - cargo-watch cargo-edit cargo-outdated cargo-crev - xh systemfd typescript #tokio-console + cargo-watch cargo-edit cargo-outdated + cargo-crev cargo-audit + xh systemfd typescript typescript-language-server + #tokio-console # required for tokio-console's console-subscriber #pkg-config protobuf ]; |