From 5510d3a5bb37246b83aca7f7a7029b2e2a3aa39a Mon Sep 17 00:00:00 2001 From: Miguel Ojeda Date: Fri, 18 Sep 2020 19:39:34 +0200 Subject: [PATCH] Pin dependencies exactly This ensures reproducible builds and no unintended updates even if a developer runs `cargo` on their own without one of the locking flags. We will explicitly manage them. Signed-off-by: Miguel Ojeda --- rust/kernel/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rust/kernel/Cargo.toml b/rust/kernel/Cargo.toml index fca60a4635ca14..ae3c018ca54395 100644 --- a/rust/kernel/Cargo.toml +++ b/rust/kernel/Cargo.toml @@ -8,10 +8,10 @@ edition = "2018" publish = false [dependencies] -bitflags = "1" +bitflags = "=1.2.1" module = { path = "../module" } [build-dependencies] -bindgen = "0.54" +bindgen = "=0.54.0" shlex = { path = "../shlex" }