Skip to content

Commit

Permalink
adds a new macro for simd, redo imports, replace hashes
Browse files Browse the repository at this point in the history
  • Loading branch information
jupyterkat committed Oct 26, 2024
1 parent 04ec169 commit 7bb77e2
Show file tree
Hide file tree
Showing 20 changed files with 245 additions and 346 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,14 @@ jobs:
run: |
sha256sum "target/${{ matrix.target_name }}/release/${{ matrix.artifact_name }}" | tee ${{ matrix.artifact_name }}.sha256
- name: Create bindings (Ubuntu)
uses: actions-rs/cargo@v1
with:
toolchain: stable
command: test
args: --target i686-unknown-linux-gnu --release --features katmos
if: matrix.os == 'ubuntu-20.04'

- name: Upload checksum files to release
uses: svenstaro/upload-release-action@v1-release
with:
Expand All @@ -88,3 +96,11 @@ jobs:
asset_name: ${{ matrix.debug_pdb_name }}
tag: ${{ github.ref }}
if: matrix.os == 'windows-latest'

- name: Upload binding to release
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: bindings.dm
asset_name: bindings.dm
tag: ${{ github.ref }}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/target
/.vscode
/.cargo/config.toml
/bindings.dm
60 changes: 30 additions & 30 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
members = ["crates/*"]

[workspace.dependencies]
byondapi = "0.4.10"
byondapi = "0.4.11"
coarsetime = "0.1.34"
flume = "0.11.1"
eyre = "0.6.12"
Expand Down Expand Up @@ -40,13 +40,13 @@ flume = { workspace = true }
coarsetime = { workspace = true }
eyre = { workspace = true }
auxcallback = { path = "./crates/auxcallback" }
auxmacros = { path = "./crates/auxmacros" }
itertools = "0.13.0"
rayon = "1.10.0"
float-ord = "0.3.2"
parking_lot = "0.12.3"
fxhash = "0.2.1"
rustc-hash = "2.0.0"
ahash = "0.8.11"
lazy_static = "1.5.0"
indexmap = { version = "2.6.0", features = ["rayon"] }
dashmap = { version = "6.1.0", features = ["rayon"] }
hashbrown = "0.15.0"
Expand All @@ -62,7 +62,7 @@ tracing-subscriber = { version = "0.3.18", optional = true }

[dependencies.tinyvec]
version = "1.8.0"
features = ["rustc_1_57", "alloc"]
features = ["rustc_1_61", "alloc"]

[profile.release]
lto = 'fat'
Expand Down
Loading

0 comments on commit 7bb77e2

Please sign in to comment.