From ac29709a644682c61a5a28d2a23f8887174fcc31 Mon Sep 17 00:00:00 2001 From: Daniel Mueller Date: Mon, 29 May 2017 15:48:40 -0700 Subject: Explicitly mention versions for local dependencies Although the version information for all the local dependencies can be inferred from various locations, cargo requires an explicit mentioning of the version of each dependency for the 'package' command to be successful. This change adds explicit versions. --- nitrocli/Cargo.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nitrocli/Cargo.toml b/nitrocli/Cargo.toml index a1b7730..d850552 100644 --- a/nitrocli/Cargo.toml +++ b/nitrocli/Cargo.toml @@ -31,18 +31,23 @@ A command line tool for interacting with the Nitrokey Storage device. """ [dependencies.gcc] +version = "0.3.48" path = "../gcc" [dependencies.hid] +version = "0.4.0" path = "../hid" [dependencies.hidapi-sys] +version = "0.1.2" path = "../hidapi-sys" [dependencies.libc] +version = "0.2.23" path = "../libc" [dependencies.pkg-config] +version = "0.3.9" path = "../pkg-config" [replace] -- cgit v1.2.1