From 27b6021389e87e8b781ec4f075026286274dc0e9 Mon Sep 17 00:00:00 2001 From: Vaivaswatha Nagaraj Date: Sun, 7 Jul 2024 10:34:21 +0530 Subject: [PATCH] Make clap, and assert_cmd workspace dependences --- Cargo.toml | 4 +++- pliron-llvm/Cargo.toml | 6 +++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ceeb35b..c2bff66 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -44,6 +44,8 @@ expect-test.workspace = true [workspace.dependencies] apint = "0.2.0" +assert_cmd = "2" +clap = { version = "4.5", features = ["derive"] } expect-test = "1.5.0" proc-macro2 = "1.0.84" quote = "1.0.36" @@ -53,4 +55,4 @@ syn = { version = "2.0.66", features = ["derive"] } combine = "4.6.7" thiserror = "1.0.61" linkme = "0.3" -tempfile = "3" +tempfile = "3" \ No newline at end of file diff --git a/pliron-llvm/Cargo.toml b/pliron-llvm/Cargo.toml index d6ea9d9..1f70149 100644 --- a/pliron-llvm/Cargo.toml +++ b/pliron-llvm/Cargo.toml @@ -15,14 +15,14 @@ license.workspace = true pliron-derive = { path = "../pliron-derive", version = "0" } pliron = { path = "../", version = "0" } apint.workspace = true -clap = { version = "4.5", features = ["derive"] } +clap.workspace = true combine.workspace = true thiserror.workspace = true linkme.workspace = true -inkwell = { version = "0", features = ["llvm17-0"] } rustc-hash.workspace = true -assert_cmd = { version = "2" } +inkwell = { version = "0", features = ["llvm17-0"] } [dev-dependencies] expect-test.workspace = true tempfile.workspace = true +assert_cmd.workspace = true