Skip to content

Commit

Permalink
fixed build artifact path
Browse files Browse the repository at this point in the history
  • Loading branch information
DhruvDh committed Jan 21, 2024
1 parent 867fbff commit 674bc62
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rust-cross-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
21 changes: 12 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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",
Expand All @@ -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"
Expand Down

0 comments on commit 674bc62

Please sign in to comment.