diff options
author | Vika <vika@fireburn.ru> | 2022-08-13 21:54:53 +0300 |
---|---|---|
committer | Vika <vika@fireburn.ru> | 2022-08-13 21:54:53 +0300 |
commit | 3de3fc65d131fc84512fcd4b1f25f64a0860e6db (patch) | |
tree | c945a7c2e6f8f2a2884f082f1af8c63f9ba9dd92 /shell.nix | |
parent | fde3e415b3412984d33281b28710e0c2b0c9b137 (diff) | |
download | kittybox-3de3fc65d131fc84512fcd4b1f25f64a0860e6db.tar.zst |
tokenauth: migrate tests to Wiremock
Wiremock doesn't require external C dependencies.
Diffstat (limited to 'shell.nix')
-rw-r--r-- | shell.nix | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/shell.nix b/shell.nix index 32b6676..a2333fc 100644 --- a/shell.nix +++ b/shell.nix @@ -1,7 +1,7 @@ { mkShell, rustc, cargo, rust-analyzer, clippy, rustfmt , cargo-watch, cargo-edit, cargo-outdated, cargo-crev , xh, systemfd, tokio-console -, pkg-config, protobuf, openssl, zlib +, pkg-config, protobuf }: mkShell { name = "rust-dev-shell"; @@ -9,11 +9,8 @@ mkShell { nativeBuildInputs = [ rustc cargo rust-analyzer clippy rustfmt cargo-watch cargo-edit cargo-outdated cargo-crev - xh systemfd tokio-console + xh systemfd #tokio-console # required for tokio-console's console-subscriber - pkg-config protobuf - # required for httpmock, not actually used in the release - openssl.dev zlib - + #pkg-config protobuf ]; } |