diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 732873d..dea6786 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,9 +15,9 @@ jobs: matrix: include: - target: x86_64-unknown-linux-gnu - os: ubuntu-latest + os: ubuntu-22.04 - target: aarch64-unknown-linux-gnu - os: ubuntu-latest + os: ubuntu-22.04 - target: x86_64-apple-darwin os: macos-latest - target: aarch64-apple-darwin diff --git a/Cargo.lock b/Cargo.lock index bb3c886..82592e9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2230,12 +2230,11 @@ checksum = "5613cb719a6222fe9b74027c3625d107767ec187bff26b8fc931cf58942c834f" [[package]] name = "typst-gather" -version = "0.2.2" +version = "0.2.3" dependencies = [ "clap", "ecow", "globset", - "openssl", "serde", "serde_json", "tempfile", diff --git a/Cargo.toml b/Cargo.toml index 06838cb..4b84e07 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "typst-gather" -version = "0.2.2" +version = "0.2.3" edition = "2021" repository = "https://github.com/quarto-dev/typst-gather" rust-version = "1.81" @@ -15,11 +15,10 @@ clap = { version = "4", features = ["derive"] } toml = "0.8" walkdir = "2" globset = "0.4" -openssl = { version = "0.10", features = ["vendored"], optional = true } [features] default = [] -vendored-openssl = ["openssl"] +vendored-openssl = ["typst-kit/vendor-openssl"] [dev-dependencies] tempfile = "3"