Use updated crates.io release for dev dependencies

The versions on crates.io now have the patches we need upstreamed.
This commit is contained in:
Mahmoud Al-Qudsi 2024-01-11 16:58:32 -06:00
parent 40feed56cf
commit fdbda18418
2 changed files with 9 additions and 13 deletions

18
Cargo.lock generated
View file

@ -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]]

View file

@ -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"]