diff options
-rw-r--r-- | shell.nix | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/shell.nix b/shell.nix index e22e25f..5438e35 100644 --- a/shell.nix +++ b/shell.nix @@ -2,7 +2,8 @@ , cargo-watch, cargo-edit, cargo-outdated , cargo-crev, cargo-audit , xh, systemfd, tokio-console, sqlx-cli -, pkg-config, protobuf, typescript, typescript-language-server +, pkg-config, protobuf, openssl +, typescript, typescript-language-server }: mkShell { name = "rust-dev-shell"; @@ -12,8 +13,8 @@ mkShell { cargo-watch cargo-edit cargo-outdated cargo-crev cargo-audit sqlx-cli xh systemfd typescript typescript-language-server - #tokio-console - # required for tokio-console's console-subscriber - #pkg-config protobuf + # protobuf is required for tokio-console's console-subscriber + #tokio-console protobuf + pkg-config openssl ]; } |