deps-upgrade(dependencies): ⬆️ Update dependencies to latest stable versions in Cargo.toml and package.json

Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
autocommit 2026-04-13 14:10:27 -07:00
parent d7d8578705
commit a90f3608ef
3 changed files with 2097 additions and 0 deletions

2047
Cargo.lock generated Normal file

File diff suppressed because it is too large Load diff

38
Cargo.toml Normal file
View file

@ -0,0 +1,38 @@
[workspace]
resolver = "2"
members = [
"crates/mc-core",
"crates/mc-climate",
"crates/mc-mapgen",
"crates/mc-combat",
"crates/mc-magic",
"crates/mc-economy",
"crates/mc-city",
"crates/mc-happiness",
"crates/mc-culture",
"crates/mc-tech",
"crates/mc-ai",
"crates/mc-turn",
"crates/mc-compute",
"crates/mc-items",
"crates/mc-balance",
"crates/mc-flora",
"crates/mc-ecology",
"crates/mc-sim",
"api-wasm",
"api-gdext",
]
# Every crate in the simulator workspace is a first-class member. mc-sim
# depends on the bench-grade mc-turn processor (reconstructed in iter 7b)
# and builds the fauna_pressure_bench / solo_dominion / tier_timeline binaries.
[workspace.dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
getrandom = "0.2"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1

12
package.json Normal file
View file

@ -0,0 +1,12 @@
{
"name": "@magic-civ/physics-rs",
"version": "0.1.0",
"description": "Rust physics engine — compiled to WASM for web, GDExtension for Godot",
"main": "pkg/magic_civ_physics.js",
"types": "pkg/magic_civ_physics.d.ts",
"scripts": {
"build": "bash build-wasm.sh",
"build:gdext": "bash build-gdext.sh"
},
"files": ["pkg/"]
}