Fixed rust dependency versioning for cargo-download

This commit is contained in:
mr. m
2025-02-20 00:25:39 +01:00
parent 21cdc29f27
commit 61311bd3e6
2 changed files with 5 additions and 5 deletions

View File

@@ -164,14 +164,14 @@ jobs:
if: ${{ !(inputs.generate-gpo && matrix.arch == 'aarch64') }}
run: |
cd engine/
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain 1.79
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain 1.80
source $HOME/.cargo/env
if test "${{ matrix.arch }}" = "aarch64"; then
rustup target add aarch64-pc-windows-msvc
else
rustup target add x86_64-pc-windows-msvc
fi
cargo install cargo-download
cargo install cargo-download --locked
cargo download -x windows=0.58.0
export CARGO_INCREMENTAL=0
echo "" >> ../configs/common/mozconfig

View File

@@ -455,15 +455,16 @@
}
.zen-current-workspace-indicator {
padding: 15px calc(6px + var(--tab-inline-padding));
padding: 15px calc(4px + var(--tab-inline-padding));
font-weight: 600;
position: absolute;
max-height: var(--zen-workspace-indicator-height);
min-height: var(--zen-workspace-indicator-height);
gap: 10px;
gap: 12px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
align-items: center;
flex-direction: row !important;
&::before {
@@ -492,7 +493,6 @@
}
.zen-current-workspace-indicator-name {
font-size: 13px;
opacity: 0.5;
display: block;
}