Adjust dependencies

This commit is contained in:
Mikayla Maki
2025-04-16 11:52:07 -07:00
parent 9c8c65b487
commit 28375376dd
7 changed files with 6 additions and 12 deletions

View File

@@ -20,6 +20,7 @@ platforms = [
[traversal-excludes]
workspace-members = [
"remote_server",
"eval",
]
third-party = [
{ name = "reqwest", version = "0.11.27" },

View File

@@ -325,7 +325,7 @@ jobs:
cache-provider: "buildjet"
- name: Install Clang & Mold
run: ./script/remote-server && ./script/install-mold 2.34.0
run: ./script/headless && ./script/install-mold 2.34.0
- name: Configure CI
run: |

View File

@@ -21,13 +21,8 @@ jobs:
with:
clean: false
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y mold pkg-config \
libx11-dev libxcb1-dev libxcb-shape0-dev libxcb-xfixes0-dev \
libx11-xcb-dev libxkbcommon-dev libxkbcommon-x11-dev \
libasound2-dev
- name: Install Dependencies
run: ./script/headless && ./script/install-mold 2.34.0
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable

1
Cargo.lock generated
View File

@@ -4913,7 +4913,6 @@ dependencies = [
"unindent",
"util",
"uuid",
"workspace-hack",
]
[[package]]

View File

@@ -11,7 +11,7 @@ ENV CARGO_TERM_COLOR=always
COPY script/install-mold script/
RUN ./script/install-mold "2.34.0"
COPY script/remote-server script/
RUN ./script/remote-server
COPY script/headless script/
RUN ./script/headless
COPY . .

View File

@@ -43,7 +43,6 @@ toml.workspace = true
unindent.workspace = true
util.workspace = true
uuid = { version = "1.6", features = ["v4"] }
workspace-hack.workspace = true
[[bin]]
name = "eval"