From fdbda18418a1a137b08b7d2ce8a35c9acb97222d Mon Sep 17 00:00:00 2001 From: Mahmoud Al-Qudsi Date: Thu, 11 Jan 2024 16:58:32 -0600 Subject: [PATCH] Use updated crates.io release for dev dependencies The versions on crates.io now have the patches we need upstreamed. --- Cargo.lock | 18 +++++++----------- Cargo.toml | 4 ++-- 2 files changed, 9 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 64cd6f791..fde51d9dc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -31,11 +31,6 @@ version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" -[[package]] -name = "cc" -version = "1.0.79" -source = "git+https://github.com/mqudsi/cc-rs?branch=fish#cdc3a376eb0f56c2fb2cf640cc0e9192feaa621b" - [[package]] name = "cc" version = "1.0.83" @@ -90,7 +85,7 @@ version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" dependencies = [ - "cc 1.0.83", + "cc", "libc", ] @@ -104,7 +99,7 @@ name = "fish-rust" version = "0.1.0" dependencies = [ "bitflags 2.4.0", - "cc 1.0.79", + "cc", "errno", "fast-float", "git-version", @@ -305,7 +300,7 @@ name = "pcre2-sys" version = "0.2.4" source = "git+https://github.com/fish-shell/rust-pcre2?branch=master#813a4267546e5ca8ff349c9c67d65e52a82172d2" dependencies = [ - "cc 1.0.83", + "cc", "libc", "pkg-config", ] @@ -404,10 +399,11 @@ checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce" [[package]] name = "rsconf" -version = "0.1.0" -source = "git+https://github.com/mqudsi/rsconf?branch=master#39b6841b373c5c32fcc5333fa17f01be42ad3217" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38a9a3f6ff97f1bc63b490ea2d2c1570fd8372ab887b45dff59695ded372d576" dependencies = [ - "cc 1.0.79", + "cc", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 6e87ff93e..542d98869 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -46,8 +46,8 @@ rand_pcg = "0.3.1" serial_test = "0.4.0" [build-dependencies] -cc = { git = "https://github.com/mqudsi/cc-rs", branch = "fish" } -rsconf = { git = "https://github.com/mqudsi/rsconf", branch = "master" } +cc = "1.0.83" +rsconf = "0.1.1" [lib] crate-type = ["staticlib"]