From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 48247C25B08 for ; Wed, 17 Aug 2022 20:19:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S238109AbiHQUTt (ORCPT ); Wed, 17 Aug 2022 16:19:49 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:54296 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S241344AbiHQUTq (ORCPT ); Wed, 17 Aug 2022 16:19:46 -0400 Received: from mail-pl1-x62d.google.com (mail-pl1-x62d.google.com [IPv6:2607:f8b0:4864:20::62d]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 1C3828E458 for ; Wed, 17 Aug 2022 13:19:46 -0700 (PDT) Received: by mail-pl1-x62d.google.com with SMTP id d10so12917763plr.6 for ; Wed, 17 Aug 2022 13:19:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=chromium.org; s=google; h=in-reply-to:content-disposition:mime-version:references:message-id :subject:cc:to:from:date:from:to:cc; bh=Z+/X/75bBL1X3xsZrV1lTZe7BZitkYfkSNopepMWJKw=; b=oKYN0loFeYxDm/+GmetyCtu1Ide2ixq91BmZy0oTuo45P4P+q3Abg106InTVGckOgg RCcY1a+ofoPtHc/7lKDqjCoeOrZvULlcVla/FR4bwd20lUWqz9ZxigaIhUlPVtwyrazL 0PS3yq8YtCDvODS/mqEAnPbQgEXpOjP6z1F8k= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=in-reply-to:content-disposition:mime-version:references:message-id :subject:cc:to:from:date:x-gm-message-state:from:to:cc; bh=Z+/X/75bBL1X3xsZrV1lTZe7BZitkYfkSNopepMWJKw=; b=RU5taCjJQeHR8vr95cicZSB2ixURXK+sv930SrWDnfQfOBZBhKcl0+AL1ifADRT8WU umZuvtkSG4ULQabeM+DNPLdFRu30tTiovPmqN3++D+DdiNPiqSBZpOpXMQwEzL+9IXnn x8kDsk3F0wn8tjgyypUricIO8ui6oSooG0EH7t0uBJ6JI6dzKmc3ySPabuB5jYEBbmEo tc0nqiSZVOi/Our1Z+dEHQBxvTJuwbZ4ulaoneYw1hA/ExrAo37YxHhiE5UGh7Zy31YY pPBnlw1w8j8Z3WQcaqko0Gz4B5KI1fSaAO6hkS0BBGSvQnpfG7uTRGL4PS0EB1qWE9iO x4cg== X-Gm-Message-State: ACgBeo01nE6A+tsIrYD/kiTuQBwZEXAX3CWeMCCSReHxrFKrkmXDz+0O C+i4HOJhKQULhb15xHe0RalMXA== X-Google-Smtp-Source: AA6agR7t6b2bE50K3de+5K4xMjXCNNOZWLiR9tXvxHlFRyvai7VeC3fBB/IeTXm527t46GMvyFgktg== X-Received: by 2002:a17:903:24f:b0:172:7d68:cf1 with SMTP id j15-20020a170903024f00b001727d680cf1mr8575172plh.55.1660767585612; Wed, 17 Aug 2022 13:19:45 -0700 (PDT) Received: from www.outflux.net (smtp.outflux.net. [198.145.64.163]) by smtp.gmail.com with ESMTPSA id r15-20020aa7988f000000b0052d51acf115sm10846638pfl.157.2022.08.17.13.19.44 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 17 Aug 2022 13:19:44 -0700 (PDT) Date: Wed, 17 Aug 2022 13:19:43 -0700 From: Kees Cook To: Miguel Ojeda Cc: Linus Torvalds , Greg Kroah-Hartman , rust-for-linux@vger.kernel.org, linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org, patches@lists.linux.dev, Jarkko Sakkinen , Alex Gaynor , Wedson Almeida Filho Subject: Re: [PATCH v9 22/27] rust: add `.rustfmt.toml` Message-ID: <202208171319.24AA0B250@keescook> References: <20220805154231.31257-1-ojeda@kernel.org> <20220805154231.31257-23-ojeda@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220805154231.31257-23-ojeda@kernel.org> Precedence: bulk List-ID: X-Mailing-List: rust-for-linux@vger.kernel.org On Fri, Aug 05, 2022 at 05:42:07PM +0200, Miguel Ojeda wrote: > This is the configuration file for the `rustfmt` tool. > > `rustfmt` is a tool for formatting Rust code according to style guidelines. > It is very commonly used across Rust projects. > > The default configuration options are used. > > Co-developed-by: Alex Gaynor > Signed-off-by: Alex Gaynor Reviewed-by: Kees Cook -- Kees Cook