-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
65 lines (54 loc) · 1.53 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[package]
name = "mesh-ripper" # ToDo
version = "0.4.0"
publish = ["crates-io"]
authors = ["rezural <rezural@protonmail.com>"]
edition = "2018"
[profile.dev]
opt-level = 1
[features]
default = [
"bevy/bevy_gltf",
"bevy/bevy_winit",
"bevy/render",
"bevy/png",
]
native = [
"bevy/bevy_wgpu",
]
web = [
"bevy_webgl2",
]
dev = [
"bevy/dynamic",
"native",
]
[dependencies]
structopt = "0.3"
rand = "0.8"
glob = "0.3"
alphanumeric-sort = "1.4"
bevy = "0.5"
winit = "0.25"
bevy_webgl2 = { version = "0.5", optional = true }
bevy-inspector-egui = "0.5"
bevy_kira_audio = { version = "0.4" }
bevy_gizmos = { git = "https://github.com/rezural/bevy_gizmos.git", branch = "main" }
glam = { version = "0.13", features = [ "mint" ] }
bevy_stl = "0.3"
bevy_obj = { git = "https://github.com/rezural/bevy_obj", branch = "create-normals-and-uv-data" }
# bevy_ply = { version = "0.1", git = "https://github.com/rezural/bevy_ply", branch = "main" }
bevy_ply = { path = "vendor/bevy_ply" }
mint = "0.5"
nalgebra = { version = "0.28", features = [ "mint", "serde-serialize", "convert-glam013"] }
parry3d = { version = "0.6", features = ["serde-serialize"] }
serde = "1"
serde_json = "1"
ron = { version = "0.6" }
walkdir = "2.3"
# smooth-bevy-cameras = { git = "https://github.com/bonsairobo/smooth-bevy-cameras" }
smooth-bevy-cameras = { git = "https://github.com/rezural/smooth-bevy-cameras", rev = "a4af96c" }
rapier3d = "0.10.1"
# smooth-bevy-cameras = { path = "vendor/smooth-bevy-cameras" }
[build-dependencies]
embed-resource = "1.6"