@ -0,0 +1 @@
use nix
@ -0,0 +1,16 @@
{ pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
buildInputs = with pkgs; [
rustc
cargo
rustfmt
rust-analyzer
clippy
pkg-config
openssl
];
RUST_BACKTRACE = 1;
}