Skip to content

Commit

Permalink
downgrade libc dep and use specific toolchain version
Browse files Browse the repository at this point in the history
  • Loading branch information
maminrayej committed Sep 1, 2024
1 parent c5a6264 commit 15e57ae
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 42 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/wasix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ jobs:
- name: "Install cargo-wasix"
run: |
cargo install cargo-wasix
- name: "Download Toolchain"
run: |
cargo wasix download-toolchain v2024-06-26.1
- name: "Build"
run: |
cargo wasix build --features=binary --release --bin s3-server
Expand Down
75 changes: 35 additions & 40 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ transform-stream = "0.3.0"
urlencoding = "2.1.0"
uuid = { version = "1.0.0", features = ["v4"] }
xml-rs = "0.8.4"
libc = { version = "=0.2.155", git = "https://github.com/wasix-org/libc", branch = "wasix-0.2.155"}
libc = { version = "=0.2.152", git = "https://github.com/wasix-org/libc", branch = "v0.2.152"}

[dev-dependencies]
anyhow = { version = "1.0.57" }
Expand All @@ -90,4 +90,4 @@ rpath = false
strip = true

[patch.crates-io]
libc = { git = "https://github.com/wasix-org/libc.git", branch = "wasix-0.2.155" }
libc = { git = "https://github.com/wasix-org/libc.git", branch = "v0.2.152" }

0 comments on commit 15e57ae

Please sign in to comment.