-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
49 lines (44 loc) · 1 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "bevy_mod_fbx"
authors = ["Nicola Papale", "HeavyRain266"]
description = "Autodesk Filmbox (*.fbx) loader for Bevy Engine"
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["bevy", "bevy_plugin", "fbx_loader"]
categories = ["game-development"]
repository = "https://github.com/nicopap/bevy_mod_fbx"
exclude = ["assets/**/*", "scripts/**/*", ".github/**/*"]
version = "0.4.0"
edition = "2021"
[features]
profile = []
maya_3dsmax_pbr = []
[dependencies]
rgb = "0.8"
anyhow = "1.0.58"
glam = { version = "0.23", features = ["mint"] }
mint = "0.5"
# fbxcel-dom = { version = "0.0.9", path = "../fbxcel-dom" }
fbxcel-dom = "0.0.9"
[dependencies.bevy]
version = "0.10"
default-features = false
features = [
"bevy_pbr",
"bevy_asset",
"bevy_render",
"bevy_scene",
]
[dev-dependencies.bevy]
version = "0.10"
default-features = false
features = [
"x11", #"wayland",
"tga", "dds",
"bevy_pbr",
"bevy_render",
"bevy_winit",
"bevy_scene",
"filesystem_watcher",
"bevy_core_pipeline"
]