From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Craven Subject: bug#25281: rust importer duplicates input Date: Wed, 28 Dec 2016 01:01:39 +0100 Message-ID: References: <87zijhuzcv.fsf@wasp.i-did-not-set--mail-host-address--so-tickle-me> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51698) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cM1h0-0006EL-5p for bug-guix@gnu.org; Tue, 27 Dec 2016 19:02:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cM1gw-0001tL-9z for bug-guix@gnu.org; Tue, 27 Dec 2016 19:02:06 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:41996) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cM1gw-0001tH-6J for bug-guix@gnu.org; Tue, 27 Dec 2016 19:02:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1cM1gv-0001LU-VL for bug-guix@gnu.org; Tue, 27 Dec 2016 19:02:01 -0500 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <87zijhuzcv.fsf@wasp.i-did-not-set--mail-host-address--so-tickle-me> List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: ng0 Cc: 25281@debbugs.gnu.org Looking at the Cargo.toml file we see this: [target."cfg(unix)".dependencies] libc = "0.2.14" # Compat with older Cargo versions temporarily [target.x86_64-unknown-linux-gnu.dependencies] libc = "0.2.14" [target.i686-unknown-linux-gnu.dependencies] libc = "0.2.14" [target.x86_64-apple-darwin.dependencies] libc = "0.2.14" [target.i686-apple-darwin.dependencies] libc = "0.2.14" I started reimplementing cargos dependency resolution algorithm, but think now that it's better to use a Cargo.lock file when one is provided. When there isn't a cargo lock file it's a library in the sense that it is a collection of source code that can be reused in a cargo project that has a Cargo.lock file. I don't think that this is a issue that needs fixing.