From acfa48886d055845c57dae7dd4a483b011110768 Mon Sep 17 00:00:00 2001 From: Dorota Czaplejewicz <dorota.czaplejewicz@puri.sm> Date: Sat, 25 Jan 2020 17:24:22 +0000 Subject: [PATCH] build: Strip clap of optional features This makes the build marginally faster at the cost of losing non-essential command line parsing in test_layout. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 0e04f0ba..e59996fc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" [dependencies] bitflags = "1.0.*" -clap = "2.32.*" +clap = { version = "2.32.*", default-features = false } maplit = "1.0.*" regex = "1.1.*" serde = { version = "1.0.*", features = ["derive"] } -- GitLab