Clean up unused dependency (#3600)

This commit is contained in:
Leedehai 2024-03-11 06:24:16 -04:00 committed by GitHub
parent a2d097686f
commit c29db5f27e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 1 additions and 3 deletions

View File

@ -42,7 +42,7 @@ jobs:
target: ${{ matrix.target }} target: ${{ matrix.target }}
- name: Run Cross - name: Run Cross
if: ${{ matrix.cross}} if: ${{ matrix.cross }}
run: | run: |
cargo install cross --git https://github.com/cross-rs/cross.git 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 cross build -p typst-cli --release --target ${{ matrix.target }} --features self-update,vendor-openssl

1
Cargo.lock generated
View File

@ -2626,7 +2626,6 @@ dependencies = [
"serde", "serde",
"serde_json", "serde_json",
"serde_yaml 0.9.32", "serde_yaml 0.9.32",
"siphasher 1.0.0",
"tar", "tar",
"tempfile", "tempfile",
"toml", "toml",

View File

@ -51,7 +51,6 @@ semver = { workspace = true }
serde = { workspace = true } serde = { workspace = true }
serde_json = { workspace = true } serde_json = { workspace = true }
serde_yaml = { workspace = true } serde_yaml = { workspace = true }
siphasher = { workspace = true }
tar = { workspace = true } tar = { workspace = true }
tempfile = { workspace = true } tempfile = { workspace = true }
toml = { workspace = true } toml = { workspace = true }