forestiles/Cargo.toml

50 lines
1.3 KiB
TOML
Raw Normal View History

2024-08-18 18:02:10 +01:00
[package]
name = "forestiles"
version = "0.1.0"
edition = "2021"
2024-08-24 21:44:13 +01:00
[lib]
crate_type=["cdylib"]
[[bin]]
path = "src/lib.rs"
name = "forestiles"
[package.metadata.android]
package = "com.forestiles.arkitu"
build_targets = ["armv7-linux-androideabi", "aarch64-linux-android", "i686-linux-android", "x86_64-linux-android"]
2024-08-18 18:02:10 +01:00
[dependencies]
2024-12-22 19:33:27 +00:00
bevy = { version = "0.15", default-features = false, features = [
"bevy_color","bevy_core_pipeline","bevy_render","bevy_winit","bevy_window","multi_threaded","wayland","bevy_sprite"
]}
2024-09-08 19:03:55 +01:00
winit = { version = "0.30", features = ["rwh_05", "android-native-activity"] }
2024-08-18 18:02:10 +01:00
env_logger = "0.11"
log = "0.4"
2024-08-20 22:12:18 +01:00
wgpu = "22.1"
2024-08-18 18:02:10 +01:00
cfg-if = "1"
pollster = "0.3"
2024-09-08 19:03:55 +01:00
bytemuck = { version = "1.18", features = [ "derive" ] }
2024-08-23 17:04:26 +01:00
rand = { version = "0.8", features = ["small_rng"] }
2024-08-23 09:00:33 +01:00
nalgebra = "0.33"
2024-08-23 17:04:26 +01:00
voronoice = "0.2"
noise = "0.9"
2024-08-29 08:52:03 +01:00
lazy_static = "1.5"
2024-09-24 19:33:18 +01:00
image = { version = "0.25", default-features = false, features = ["rayon", "png"]}
2024-08-18 18:02:10 +01:00
[target.'cfg(target_arch = "wasm32")'.dependencies]
console_error_panic_hook = "0.1.6"
console_log = "1.0"
wgpu = { version = "22", features = ["webgl"]}
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
web-sys = { version = "0.3", features = [
"Document",
"Window",
"Element",
2024-08-29 08:52:03 +01:00
]}
getrandom ={ version = "*", features = ["js"]}
[target.'cfg(target_os = "android")'.dependencies]
2024-08-31 09:41:16 +01:00
android_logger = "0.14"