ttt-ce/Cargo.toml
MikolajG 24bf13666f Merge branch 'dev-kinematic' of ssh://git@129.151.217.187:23/MikolajG/ttt-ce.git into dev-kinematic
# Conflicts:
#    .vscode/settings.json
#    src/player_utils/character_controller.rs
2024-07-11 14:12:11 +02:00

85 lines
1.9 KiB
TOML

[package]
name = "ttt_ce" # ToDo
version = "0.1.0"
publish = false
authors = ["Mikolaj Wojciech 'Nimfer' Gorski"] # ToDo: you are the author ;)
edition = "2021"
exclude = ["dist", "build", "assets", "credits"]
[workspace]
members = ["mobile"]
[profile.dev.package."*"]
opt-level = 3
[profile.dev]
opt-level = 1
# This is used by trunk as it doesn't support custom profiles: https://github.com/trunk-rs/trunk/issues/605
# xbuild also uses this profile for building android AABs because I couldn't find a configuration for it
[profile.release]
opt-level = "s"
lto = true
codegen-units = 1
strip = true
# Profile for distribution
[profile.dist]
inherits = "release"
opt-level = 3
lto = true
codegen-units = 1
strip = true
[build]
rustflags = ["-Z", "threads=7"]
[features]
dev = [
"bevy/dynamic_linking",
]
# All of Bevy's default features exept for the audio related ones (bevy_audio, vorbis), since they clash with bevy_kira_audio
# and android_shared_stdcxx, since that is covered in `mobile`
[dependencies]
bevy = { version = "0.13", default-features = false, features = [
"animation",
"bevy_asset",
"bevy_gilrs",
"bevy_scene",
"bevy_winit",
"bevy_core_pipeline",
"bevy_pbr",
"bevy_gltf",
"bevy_render",
"bevy_sprite",
"bevy_text",
"bevy_ui",
"multi-threaded",
"png",
"hdr",
"x11",
"wayland",
"bevy_gizmos",
"tonemapping_luts",
"default_font",
"webgl2",
"bevy_debug_stepping",
] }
bevy_kira_audio = { version = "0.19" }
bevy_asset_loader = { version = "0.20" }
rand = { version = "0.8.3" }
webbrowser = { version = "0.8", features = ["hardened"] }
bevy_editor_pls = "0.8.1"
bevy_xpbd_3d = "0.4.2"
# keep the following in sync with Bevy's dependencies
winit = { version = "0.29", default-features = false }
image = { version = "0.24", default-features = false }
serde_json = "1.0.117"
[build-dependencies]
embed-resource = "1"