-
Notifications
You must be signed in to change notification settings - Fork 20
/
Cargo.toml
33 lines (29 loc) · 899 Bytes
/
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
[package]
name = "bevy_obj"
version = "0.15.0"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/AmionSky/bevy_obj"
description = "Wavefront OBJ mesh asset loader plugin for the Bevy engine"
keywords = ["bevy", "obj"]
authors = ["Csányi István <icsanyi96@gmail.com>"]
exclude = ["/assets", "/examples"]
[dependencies]
serde = { version = "1.0.0", features = ["derive"] }
thiserror = "1.0.0"
tobj = "4.0.0"
[dependencies.bevy]
version = "0.15.0-rc"
default-features = false
features = ["bevy_asset", "bevy_render"]
[dev-dependencies.bevy]
version = "0.15.0-rc"
default-features = true
[features]
default = ["mesh", "scene"]
# Support for loading OBJ file as a singular mesh
mesh = []
# Support for loading OBJ file as a scene with MTL materials
scene = ["tobj/async", "bevy/bevy_scene", "bevy/bevy_pbr"]
# Enable logging of the OBJ parser crate
log = ["tobj/log"]