From c29db5f27e9f7b6865dc540a63d9fe269dfaac1b Mon Sep 17 00:00:00 2001 From: Leedehai <18319900+Leedehai@users.noreply.github.com> Date: Mon, 11 Mar 2024 06:24:16 -0400 Subject: [PATCH] Clean up unused dependency (#3600) --- .github/workflows/release.yml | 2 +- Cargo.lock | 1 - crates/typst-cli/Cargo.toml | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 15bae6324..1932bf707 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -42,7 +42,7 @@ jobs: target: ${{ matrix.target }} - name: Run Cross - if: ${{ matrix.cross}} + if: ${{ matrix.cross }} run: | cargo install cross --git https://github.com/cross-rs/cross.git cross build -p typst-cli --release --target ${{ matrix.target }} --features self-update,vendor-openssl diff --git a/Cargo.lock b/Cargo.lock index e9057b93b..a549d2042 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2626,7 +2626,6 @@ dependencies = [ "serde", "serde_json", "serde_yaml 0.9.32", - "siphasher 1.0.0", "tar", "tempfile", "toml", diff --git a/crates/typst-cli/Cargo.toml b/crates/typst-cli/Cargo.toml index e7005a718..6d5b4c384 100644 --- a/crates/typst-cli/Cargo.toml +++ b/crates/typst-cli/Cargo.toml @@ -51,7 +51,6 @@ semver = { workspace = true } serde = { workspace = true } serde_json = { workspace = true } serde_yaml = { workspace = true } -siphasher = { workspace = true } tar = { workspace = true } tempfile = { workspace = true } toml = { workspace = true }