diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index f8ff8fc..c0481eb 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -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 diff --git a/nyash_client/Cargo.lock b/nyash_client/Cargo.lock index c2b3adf..dab10f8 100644 --- a/nyash_client/Cargo.lock +++ b/nyash_client/Cargo.lock @@ -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" diff --git a/nyash_client/Cargo.toml b/nyash_client/Cargo.toml index 99af8d0..08a93fa 100644 --- a/nyash_client/Cargo.toml +++ b/nyash_client/Cargo.toml @@ -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"