about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2022-10-01 16:40:10 +0200
committerMatthias Krüger <matthias.krueger@famsik.de>2022-10-01 16:40:10 +0200
commitce609c661b99015df63cf20a4d72d69fdfbf5836 (patch)
tree503fcdaac2268e3d1b9a79829c1cf90c3f0caccb
parent8030ee9ae7f49f0f7ba7ac699f4d875a04f036f8 (diff)
downloadrust-ce609c661b99015df63cf20a4d72d69fdfbf5836.tar.gz
rust-ce609c661b99015df63cf20a4d72d69fdfbf5836.zip
use rustc_tools_util dependency from crates.io instead of this repo.
Fixes #9553
-rw-r--r--Cargo.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index dbf0dd33806..5223dca073f 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -23,7 +23,7 @@ path = "src/driver.rs"
 [dependencies]
 clippy_lints = { path = "clippy_lints" }
 semver = "1.0"
-rustc_tools_util = { path = "rustc_tools_util" }
+rustc_tools_util = "0.2.1"
 tempfile = { version = "3.2", optional = true }
 termize = "0.1"
 
@@ -56,7 +56,7 @@ tokio = { version = "1", features = ["io-util"] }
 rustc-semver = "1.1"
 
 [build-dependencies]
-rustc_tools_util = { version = "0.2.1", path = "rustc_tools_util" }
+rustc_tools_util = "0.2.1"
 
 [features]
 deny-warnings = ["clippy_lints/deny-warnings"]