51 lines
1.7 KiB
TOML
51 lines
1.7 KiB
TOML
[package]
|
|
name = "fyrox-core"
|
|
version = "2.0.0-rc.1"
|
|
authors = ["Dmitry Stepanov <d1maxa@yandex.ru>"]
|
|
edition = "2021"
|
|
license = "MIT"
|
|
description = "Shared core for the Fyrox engine and its external crates."
|
|
keywords = ["game", "engine", "3d"]
|
|
categories = ["game-development", "graphics", "gui", "rendering", "wasm"]
|
|
include = ["/src/**/*", "/Cargo.toml", "/LICENSE", "/README.md"]
|
|
homepage = "https://fyrox.rs"
|
|
documentation = "https://docs.rs/fyrox-core"
|
|
repository = "https://github.com/FyroxEngine/Fyrox"
|
|
readme = "README.md"
|
|
rust-version = "1.94"
|
|
|
|
[dependencies]
|
|
fyrox-core-derive = { path = "../fyrox-core-derive", version = "2.0.0-rc.1" }
|
|
fyrox-math = { path = "../fyrox-math", version = "2.0.0-rc.1" }
|
|
base64 = "0.22.1"
|
|
byteorder = "1.4.3"
|
|
rand = "0.8"
|
|
nalgebra = { version = "0.35", features = ["bytemuck", "convert-glam030"] }
|
|
arrayvec = "0.7.2"
|
|
futures = { version = "0.3.17", features = ["thread-pool"] }
|
|
uuid = { version = "1", features = ["v4", "js"] }
|
|
instant = { version = "0.1.12", features = ["wasm-bindgen"] }
|
|
num-traits = "0.2.14"
|
|
parking_lot = "0.12.0"
|
|
fxhash = "0.2.1"
|
|
bitflags = "2.2.1"
|
|
once_cell = "1.17.1"
|
|
notify = "8"
|
|
serde = { version = "1", features = ["derive"] }
|
|
bincode = "1.3.3"
|
|
bytemuck = "1.23.2"
|
|
strum = "0.27"
|
|
strum_macros = "0.27"
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
web-sys = { version = "0.3.53", features = ["Request", "Window", "Response", "AudioContext", "AudioBuffer", "AudioContextOptions", "AudioNode", "AudioBufferSourceNode", "AudioDestinationNode"] }
|
|
wasm-bindgen = "0.2.76"
|
|
wasm-bindgen-futures = "0.4.26"
|
|
js-sys = "0.3.53"
|
|
|
|
[target.'cfg(target_os = "android")'.dependencies]
|
|
android-activity = "0.6.0"
|
|
|
|
[features]
|
|
serde = ["nalgebra/serde-serialize", "uuid/serde"]
|