lemmy-server: allow warnings

Remember kids, don't -Werror in production.
This commit is contained in:
K900 2026-06-28 15:12:21 +03:00
commit 87e2e48e4e

View file

@ -49,6 +49,9 @@ rustPlatform.buildRustPackage rec {
PROTOC = "${protobuf}/bin/protoc";
PROTOC_INCLUDE = "${protobuf}/include";
# #[deny(warnings)] trips on newer rustc
RUSTFLAGS = "--cap-lints warn";
};
nativeBuildInputs = [
protobuf