proper error handling

This commit is contained in:
Sebastian Hugentobler 2024-05-06 09:09:40 +02:00
parent 687c33829f
commit ac7b0e7e88
Signed by: shu
GPG key ID: BB32CF3CA052C2F0
15 changed files with 245 additions and 25 deletions

View file

@ -9,7 +9,6 @@
outputs =
{
self,
nixpkgs,
naersk,
fenix,
@ -72,14 +71,11 @@
pkgs = import nixpkgs { inherit system; };
rust = fenix.packages.${system}.stable;
in
with pkgs;
{
devShells.default = mkShell {
devShells.default = pkgs.mkShell {
buildInputs = [
mosquitto
rust.toolchain
rust-analyzer
sea-orm-cli
pkgs.rust-analyzer
];
};
}