Received: by mail.netbsd.org (Postfix, from userid 605) id 05CE584E70; Fri, 14 Aug 2020 21:19:24 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 802B584CEE for ; Fri, 14 Aug 2020 21:19:23 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id H7o2yqqqZfmJ for ; Fri, 14 Aug 2020 21:19:23 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id CB4FA84CEC for ; Fri, 14 Aug 2020 21:19:22 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id BF118FB28; Fri, 14 Aug 2020 21:19:22 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_159743996222580" MIME-Version: 1.0 Date: Fri, 14 Aug 2020 21:19:22 +0000 From: "Tobias Nygren" Subject: CVS commit: pkgsrc/lang/rust To: pkgsrc-changes@NetBSD.org Reply-To: tnn@netbsd.org X-Mailer: log_accum Message-Id: <20200814211922.BF118FB28@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_159743996222580 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: tnn Date: Fri Aug 14 21:19:22 UTC 2020 Modified Files: pkgsrc/lang/rust: cargo.mk Log Message: rust/cargo.mk: update documentation To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.22 pkgsrc/lang/rust/cargo.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_159743996222580 Content-Disposition: inline Content-Length: 969 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/rust/cargo.mk diff -u pkgsrc/lang/rust/cargo.mk:1.21 pkgsrc/lang/rust/cargo.mk:1.22 --- pkgsrc/lang/rust/cargo.mk:1.21 Fri Aug 14 21:12:03 2020 +++ pkgsrc/lang/rust/cargo.mk Fri Aug 14 21:19:22 2020 @@ -1,4 +1,4 @@ -# $NetBSD: cargo.mk,v 1.21 2020/08/14 21:12:03 tnn Exp $ +# $NetBSD: cargo.mk,v 1.22 2020/08/14 21:19:22 tnn Exp $ # # Common logic that can be used by packages that depend on cargo crates # from crates.io. This lets existing pkgsrc infrastructure fetch and verify @@ -12,8 +12,10 @@ # # If modifying the list of dependencies, re-run the build once without # --offline in CARGO_ARGS to generate a new valid Cargo.lock. +# e.g: make CARGO_ARGS="build --release" build # -# a list of CARGO_CRATE_DEPENDS can be generated via "make show-cargo-depends". +# a list of CARGO_CRATE_DEPENDS can be generated via +# make print-cargo-depends > cargo-depends.mk # # See also www/geckodriver for a full example. --_----------=_159743996222580--