Skip to content

Commit

Permalink
huuurghh
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkSuckerberg committed Aug 2, 2023
1 parent bd661a1 commit 495169d
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 20 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,14 @@ jobs:
run: |
sudo apt update
sudo apt install g++-multilib -y
- name: Build auxmos
run: cargo build --target=i686-unknown-linux-gnu --release --features "all_reaction_hooks katmos"

- uses: actions/upload-artifact@v2
with:
name: Linux compile
path: target/i686-unknown-linux-gnu/release/libauxmos.*

- name: Check dependencies
run: ldd target/i686-unknown-linux-gnu/release/libauxmos.so
16 changes: 2 additions & 14 deletions Cargo.lock

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

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ members = [

[package]
name = "auxmos"
version = "1.2.0"
version = "1.1.0"
authors = ["Putnam <[email protected]>"]
edition = "2021"

Expand Down Expand Up @@ -37,21 +37,21 @@ auxtools = { git = "https://github.com/willox/auxtools" }
auxcallback = { path = "./crates/auxcallback" }
auxcleanup = { path = "./crates/auxcleanup", optional = true}
itertools = "0.10.5"
rayon = "1.6.1"
rayon = "1.5.1"
float-ord = "0.3.2"
crossbeam = "0.8.1"
flume = "0.10.14"
parking_lot = "0.12.1"
fxhash = "0.2.1"
nonmax = "0.5.3"
ahash = "0.8.3"
ahash = "0.7.6"
lazy_static = "1.4.0"
indexmap = { version = "1.9.2", features = ["rayon"] }
dashmap = { version = "5.4.0", features = ["rayon"] }
indexmap = { version = "1.8.0", features = ["rayon"] }
dashmap = { version = "5.2.0", features = ["rayon"] }
atomic_float = "0.1.0"

[dependencies.tinyvec]
version = "1.6.0"
version = "1.5.1"
features = ["rustc_1_57", "alloc"]

[profile.release]
Expand Down

0 comments on commit 495169d

Please sign in to comment.