From ec521088b736b49dc1f3d11a3bdc989678ca0310 Mon Sep 17 00:00:00 2001 From: Benjamin Bouvier Date: Tue, 5 Mar 2019 15:07:21 +0100 Subject: [PATCH] Fixes #695: Reintroduce a workspace declaration to run all tests with cargo; --- cranelift/Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cranelift/Cargo.toml b/cranelift/Cargo.toml index f4c25a168e..650551c380 100644 --- a/cranelift/Cargo.toml +++ b/cranelift/Cargo.toml @@ -9,6 +9,10 @@ repository = "https://github.com/CraneStation/cranelift" publish = false edition = "2018" +# Present here only to make sure that cargo test --all runs tests for all +# the crates. +[workspace] + [[bin]] name = "clif-util" path = "src/clif-util.rs"