Skip to content

Commit 7e42bb6

Browse files
fix: enforce [email protected]
All later versions are broken rust-lang/cc-rs#1278
1 parent 81c8ff7 commit 7e42bb6

File tree

4 files changed

+15
-8
lines changed

4 files changed

+15
-8
lines changed

Cargo.lock

+11-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

iroh-base/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ rust-version = "1.76"
1515
workspace = true
1616

1717
[dependencies]
18+
cc = "=1.1.31" # enforce cc version, because of https://github.com/rust-lang/cc-rs/issues/1278
1819
anyhow = { version = "1" }
1920
blake3 = { version = "1.4.5", package = "iroh-blake3", optional = true }
2021
data-encoding = { version = "2.3.3", optional = true }

iroh-net/Cargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ rust-version = "1.76"
1616
workspace = true
1717

1818
[dependencies]
19+
cc = "=1.1.31" # enforce cc version, because of https://github.com/rust-lang/cc-rs/issues/1278
20+
1921
anyhow = { version = "1" }
2022
backoff = "0.4.0"
2123
base64 = "0.22.1"

iroh/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ rust-version = "1.76"
1616
workspace = true
1717

1818
[dependencies]
19+
cc = "=1.1.31" # enforce cc version, because of https://github.com/rust-lang/cc-rs/issues/1278
1920
anyhow = { version = "1" }
2021
async-channel = "2.3.1"
2122
bao-tree = { version = "0.13", features = ["tokio_fsm"], default-features = false }

0 commit comments

Comments
 (0)