Use c-string literals and update trampolines (#2590)

Rust 1.77 has stabilized c-string literals (`c"<string>"`):
https://doc.rust-lang.org/nightly/edition-guide/rust-2021/c-string-literals.html.
This PR replaces the usages of the custom c-string literal macro in the
trampoline with the new syntax.
This commit is contained in:
konsti
2024-03-21 16:36:00 +01:00
committed by GitHub
parent f91ce521c5
commit 2375008cc1
10 changed files with 14 additions and 20 deletions

View File

@@ -128,7 +128,7 @@ jobs:
working-directory: crates/uv-trampoline
run: |
rustup target add x86_64-pc-windows-msvc
rustup component add clippy rust-src --toolchain nightly-2024-01-23-x86_64-pc-windows-msvc
rustup component add clippy rust-src --toolchain nightly-2024-03-19-x86_64-pc-windows-msvc
- uses: rui314/setup-mold@v1
- uses: Swatinem/rust-cache@v2
with: