More fixes.

This commit is contained in:
Kirill Shakirov
2026-04-06 23:02:11 +02:00
parent e1a7fdba0b
commit b99926e0b0
3 changed files with 8 additions and 7 deletions
+3 -2
View File
@@ -50,9 +50,10 @@ jobs:
uses: houseabsolute/actions-rust-cross@v1
with:
command: build
target: ${{ matrix.platform.target }}
args: "---manifest-path nyash_server/Cargo.toml -locked --release"
target: x86_64-unknown-freebsd
args: "--locked --release --manifest-path nyash_server/Cargo.toml"
strip: true
name: Build binary
- name: Upload Server Binary
uses: actions/upload-artifact@v4
+4 -4
View File
@@ -226,9 +226,9 @@ dependencies = [
[[package]]
name = "fastrand"
version = "2.3.0"
version = "2.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
checksum = "a043dc74da1e37d6afe657061213aa6f425f855399a11d3463c6ecccc4dfda1f"
[[package]]
name = "fixedbitset"
@@ -881,9 +881,9 @@ dependencies = [
[[package]]
name = "semver"
version = "1.0.27"
version = "1.0.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
[[package]]
name = "serde"
+1 -1
View File
@@ -10,7 +10,7 @@ path = "src/client.rs"
[dependencies]
flate2 = "1.1.9"
ocl = { version = "0.19", features = ["opencl_version_2_0", "opencl_version_2_1"]}
ocl = { version = "0.19" }
prost = "0.14.3"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"