Skip to content

Instantly share code, notes, and snippets.

@salewski
Created November 18, 2020 21:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save salewski/5ccd2d5accc5ebab418dfdc92afbf6fa to your computer and use it in GitHub Desktop.
Save salewski/5ccd2d5accc5ebab418dfdc92afbf6fa to your computer and use it in GitHub Desktop.
rust-lang source file boilerplate
// SPDX-FileCopyrightText: <text> © 2020 Alan D. Salewski <ads@salewski.email> </text>
//
// SPDX-License-Identifier: GPL-2.0-or-later
// Crate-specific settings. Note that we set these here rather than in the
// 'build.rustflags' section of .cargo/config.toml because we want them to
// apply to compilation of our crate only, not to dependency code that we have
// no control over. Also, specifying them via the RUSTFLAGS environment
// variable or via cargo-rustc(1) is much less reliable because we do not have
// any build-tool wrapping (Makefile, GNU Autotools, etc.).
//
// ----------------------------------------------------------------------------
// By default 'unused_must_use' is only a warning, but for our code we will
// treat it as an error. Any instance of our code ignoring something
// flagged with the #[must_use] attribute is probably a bug.
//
// Where truly warranted, you can override this in targetted locations
// within the code by specifying the '#[allow(unused_must_use)] attribute
// above the relevant item.
//
// Note that 'unused_must_use' is entirely different than
// 'unused_variables' (which we still allow b/c they are useful during
// development).
//
// See also:
// $ rustc -W help | grep '^[[:space:]]*unused-' | less
// https://users.rust-lang.org/t/unused-comparison-that-must-be-used/43715/2
// https://doc.rust-lang.org/rustc/lints/listing/warn-by-default.html#unused-must-use
// https://doc.rust-lang.org/reference/attributes/diagnostics.html#the-must_use-attribute
//
#![deny(unused_must_use)]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment