From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5EB0415808B for ; Fri, 8 Apr 2022 00:56:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 03BA7E095A; Fri, 8 Apr 2022 00:56:32 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B33EBE095A for ; Fri, 8 Apr 2022 00:56:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 37E26341180 for ; Fri, 8 Apr 2022 00:56:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8F1B4388 for ; Fri, 8 Apr 2022 00:56:26 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1649379372.0b11ea374e0ae2434810e3671dc382ff5b468a14.gyakovlev@gentoo> Subject: [gentoo-commits] proj/cargo-ebuild:master commit in: / X-VCS-Repository: proj/cargo-ebuild X-VCS-Files: Cargo.toml X-VCS-Directories: / X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 0b11ea374e0ae2434810e3671dc382ff5b468a14 X-VCS-Branch: master Date: Fri, 8 Apr 2022 00:56:26 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 30c1bf48-ad1c-4dd5-9501-a346ccc59429 X-Archives-Hash: 7f370ddfa561612d1ab78b90e79420bd commit: 0b11ea374e0ae2434810e3671dc382ff5b468a14 Author: Leonardo Neumann neumann dev br> AuthorDate: Fri Mar 25 21:24:07 2022 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Fri Apr 8 00:56:12 2022 +0000 URL: https://gitweb.gentoo.org/proj/cargo-ebuild.git/commit/?id=0b11ea37 Cargo.toml: Add and enable vendored-libgit2 feature Closes: gentoo#20 Signed-off-by: Leonardo Neumann neumann.dev.br> Signed-off-by: Georgy Yakovlev gentoo.org> Cargo.toml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a66ede1..4058bf8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,13 +29,20 @@ cargo_metadata = "0.14.2" itertools = "0.10.3" rustsec = "0.25.1" structopt = "0.3.26" -serde = { version = "1.0.136", features = ["derive"] } time = "0.3.9" [dependencies.phf] version = "0.10.1" features = ["macros"] +[dependencies.serde] +version = "1.0.136" +features = ["derive"] + [dependencies.tera] version = "1.15.0" default-features = false + +[features] +default = ["vendored-libgit2"] +vendored-libgit2 = ["rustsec/vendored-libgit2"]