build: add more libs

This commit is contained in:
dusk 2024-08-30 22:10:38 +03:00
parent 7199443877
commit c9d4d04979
Signed by: dusk
SSH Key Fingerprint: SHA256:Abmvag+juovVufZTxyWY8KcVgrznxvBjQpJesv071Aw
3 changed files with 7 additions and 4 deletions

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

Binary file not shown.

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

Binary file not shown.

View File

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