73 lines
3 KiB
TOML
73 lines
3 KiB
TOML
# ▄████████▄ + ███ + ▄█████████ ███ +
|
|
# ███▀ ▀███ + + ███ ███▀ + ███ + +
|
|
# ███ + ███ ███ ███ █████████ ███ ███ ███ ███
|
|
# ███ +███ ███ ███ ███ ███▐██████ ███ ███ ███
|
|
# ███ + ███ ███+ ███ +███ ███ + ███ ███ + ███
|
|
# ███▄ ▄███ ███▄ ███ ███ + ███ + ███ ███▄ ███
|
|
# ▀████████▀ + ▀███████ ███▄ ███▄ ▀████ ▀███████
|
|
# + + + ███
|
|
# + ▀████████████████████████████████████████████████████▀
|
|
|
|
[package]
|
|
name = "outfly"
|
|
version = "0.8.2"
|
|
edition = "2021"
|
|
homepage = "https://codeberg.org/hut/outfly"
|
|
repository = "https://codeberg.org/hut/outfly"
|
|
categories = ["game", "aerospace", "simulation"]
|
|
keywords = ["game", "space", "3d"]
|
|
license = "GPL-3.0-only"
|
|
rust-version = "1.76.0"
|
|
|
|
[dependencies]
|
|
# For parsing the game definition file, src/data/defs.txt
|
|
regex = "1"
|
|
|
|
# The bevy game engine, the basis for this game
|
|
bevy = { version = "0.13.2", default-features = false, features = ["animation", "bevy_asset", "bevy_audio", "bevy_scene", "bevy_winit", "bevy_core_pipeline", "bevy_pbr", "bevy_gltf", "bevy_render", "bevy_text", "bevy_ui", "jpeg", "multi-threaded", "png", "tonemapping_luts", "vorbis"]}
|
|
|
|
# For physics and collision handling
|
|
bevy_xpbd_3d = { version = "0.4.2", default-features = false, features = ["3d", "f64", "parry-f64", "parallel", "async-collider"] }
|
|
|
|
# For embedding assets into the binary, creating a self-sufficient executable
|
|
bevy_embedded_assets = { version = "0.10.2", optional = true }
|
|
|
|
# For seeded pseudo-random procedural generation of asteroids
|
|
fastrand = "2.0"
|
|
|
|
# For conversation specification files, which are in YAML
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_yaml = "0.9"
|
|
|
|
# For reading/writing the player's configuration file.
|
|
toml_edit = { version = "0.22", features = ["serde"] }
|
|
|
|
[build-dependencies]
|
|
embed-resource = "1.6.3" # embedding of .exe metadata
|
|
|
|
[features]
|
|
default = ["x11", "embed_assets"]
|
|
mute_music = []
|
|
dev_mode = []
|
|
dev = ["dev_mode", "mute_music", "bevy/dynamic_linking", "bevy/file_watcher"]
|
|
release_linux = ["x11", "wayland", "embed_assets"]
|
|
release_windows = ["embed_assets"]
|
|
wasm = ["bevy/webgl2"]
|
|
x11 = ["bevy/x11"]
|
|
wayland = ["bevy/wayland"]
|
|
embed_assets = ["dep:bevy_embedded_assets"]
|
|
|
|
[profile.dev]
|
|
opt-level = 1
|
|
|
|
[profile.dev.package."*"]
|
|
opt-level = 3 # high optimizations for dependencies, but not for our code
|
|
|
|
[profile.release]
|
|
lto = true
|
|
opt-level = 'z'
|
|
codegen-units = 1
|
|
incremental = false
|
|
debug = false
|
|
strip = true
|