Compare commits

..

No commits in common. "c9d4d04979a3889bd24aa574ca1793324cf248d6" and "6fe25a5c01211d5eefd16cb66a16a83257f31417" have entirely different histories.

6 changed files with 4 additions and 22 deletions

View File

@ -10,8 +10,6 @@ linux.release.x86_64 = "res://addons/boids/lib/libboids.x86.so"
windows.release.x86_64 = "res://addons/boids/lib/boids.x86.dll"
macos.release = "res://addons/boids/lib/libboids.x86.dylib"
macos.release.arm64 = "res://addons/boids/lib/libboids.arm64.dylib"
web.debug.wasm32 = "res://rust/target/wasm32-unknown-emscripten/debug/boids.wasm"
web.release.wasm32 = "res://addons/boids/lib/boids.wasm"
[icons]
BoidProperties = "res://addons/boids/resources/boid_properties.svg"

BIN
addons/boids/lib/boids.wasm (Stored with Git LFS)

Binary file not shown.

BIN
addons/boids/lib/boids.x86.dll (Stored with Git LFS)

Binary file not shown.

View File

@ -1,7 +0,0 @@
[target.wasm32-unknown-emscripten]
rustflags = [
"-C", "link-args=-sSIDE_MODULE=2",
"-C", "link-args=-pthread", # was -sUSE_PTHREADS=1 in earlier emscripten versions
"-C", "target-feature=+atomics,+bulk-memory,+mutable-globals",
"-Zlink-native-libraries=no"
]

View File

@ -10,14 +10,11 @@ crate-type = ["cdylib"]
stats = []
[dependencies]
godot = { git = "https://github.com/godot-rust/gdext", branch = "master", features = ["api-4-3", "register-docs"] }
godot = { git = "https://github.com/godot-rust/gdext", branch = "master", features = ["api-4-3", "experimental-threads", "register-docs"] }
glam = { version = "0.28", features = ["fast-math"] }
rayon = { version = "1.10" }
rustc-hash = "2"
indexmap = "2.4.0"
[target.wasm32-unknown-emscripten.dependencies]
godot = { git = "https://github.com/godot-rust/gdext", branch = "master", features = ["api-4-3", "register-docs", "experimental-wasm", "lazy-function-tables"] }
[profile.dev]
opt-level = 1
opt-level = 3

View File

@ -1,3 +0,0 @@
[toolchain]
channel = "nightly"
targets = ["x86_64-unknown-linux-gnu", "aarch64-apple-darwin", "wasm32-unknown-emscripten"]