43 lines
No EOL
987 B
TOML
43 lines
No EOL
987 B
TOML
[package]
|
|
#![recursion_limit = "256"]
|
|
name = "game"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[profile.release]
|
|
strip = true
|
|
|
|
[[bin]]
|
|
name = "game"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
gltf = "1.4.1"
|
|
anyhow = "1.0"
|
|
winit = { version = "0.30", features = ["android-native-activity"] }
|
|
env_logger = "0.11.10"
|
|
log = "0.4"
|
|
wgpu = "29.0.3"
|
|
pollster = "0.4.0"
|
|
glam = { version = "0.33.3", features = [ "bytemuck" ] }
|
|
console_error_panic_hook = "0.1.7"
|
|
bytemuck = { version = "1.25.0", features = [ "derive" ]}
|
|
image = { version = "0.24", default-features = false, features = ["png", "jpeg"]}
|
|
mars = { path = "../Mars" }
|
|
rand = "0.8"
|
|
rand_chacha = "0.3"
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
console_error_panic_hook = "0.1.6"
|
|
wgpu = { version = "29.0.3", features = ["webgl"]}
|
|
wasm-bindgen = "0.2.121"
|
|
wasm-bindgen-futures = "0.4.71"
|
|
console_log = "1.0.0"
|
|
web-sys = { version = "0.3", features = [
|
|
"Document",
|
|
"Window",
|
|
"Element",
|
|
]}
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"] |