From 674bc6275a8b550525b711efd1b8a03cc51e91da Mon Sep 17 00:00:00 2001 From: Dhruv Dhamani Date: Sun, 21 Jan 2024 09:39:05 -0500 Subject: [PATCH] fixed build artifact path --- .github/workflows/rust-cross-build.yml | 2 +- Cargo.toml | 21 ++++++++++++--------- 2 files changed, 13 insertions(+), 10 deletions(-) diff --git a/.github/workflows/rust-cross-build.yml b/.github/workflows/rust-cross-build.yml index 87f9fec15..19a3930d4 100644 --- a/.github/workflows/rust-cross-build.yml +++ b/.github/workflows/rust-cross-build.yml @@ -73,7 +73,7 @@ jobs: - name: Package as archive shell: bash run: | - cd target/${{ matrix.platform.target }}/release + cd target/${{ matrix.platform.target }}/release-lto if [[ "${{ matrix.platform.os }}" == "windows-latest" ]]; then 7z a ../../../${{ matrix.platform.name }} ${{ matrix.platform.bin }} else diff --git a/Cargo.toml b/Cargo.toml index 890d4326b..67b3b38ae 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,10 +16,10 @@ description = "A java build tool and scriptable autograder that generates feedba [dependencies] umm_derive = { path = "./umm_derive" } -anyhow = "1.0.75" +anyhow = "1.0.79" lazy_static = "1.4.0" which = "6.0.0" -bpaf = { version = "0.9.6", features = ["bright-color"] } +bpaf = { version = "0.9.9", features = ["bright-color"] } glob = "0.3.1" peg = "0.8.2" tree-sitter = "0.20.10" @@ -30,19 +30,19 @@ serde_json = "1.0.111" tabled = "0.10.0" rhai = { version = "1.16.3", features = ["metadata", "decimal", "sync"] } self_update = { version = "0.39.0", features = ["rustls"] } -typed-builder = "0.18.0" +typed-builder = "0.18.1" postgrest = "1.6.0" -reqwest = { version = "0.11.22", features = ["json", "rustls-tls"] } -tokio = { version = "1.33.0", features = ["full"] } +reqwest = { version = "0.11.23", features = ["json", "rustls-tls"] } +tokio = { version = "1.35.1", features = ["full"] } futures = "0.3.29" tracing = "0.1.40" -tracing-subscriber = "0.3.17" +tracing-subscriber = "0.3.18" walkdir = "2.4.0" dotenvy = "0.15.7" async-openai = "0.15.0" uuid = { version = "1.7.0", features = ["std", "v4"] } snailquote = "0.3.1" -similar = { version = "2.3.0", features = [ +similar = { version = "2.4.0", features = [ "text", "inline", "unicode", @@ -66,9 +66,12 @@ zip-extensions = "0.6.2" chrono = "0.4.31" [target.x86_64-unknown-linux-gnu.dependencies] -openssl = { version = "0.10.59", features = ["vendored"] } -reqwest = { version = "0.11.22", features = ["json"] } +openssl = { version = "0.10.63", features = ["vendored"] } +reqwest = { version = "0.11.23", features = ["json"] } +[target.x86_64-unknown-linux-musl.dependencies] +openssl = { version = "0.10.63", features = ["vendored"] } +reqwest = { version = "0.11.23", features = ["json"] } [profile.release-lto] inherits = "release"