@@ -25,7 +25,12 @@ egui-gui = ["egui_glow", "egui", "getrandom"] # Additional GUI features
25
25
[dependencies ]
26
26
glow = " 0.13"
27
27
cgmath = " 0.18"
28
- three-d-asset = {version = " 0.7" }
28
+ # Upstream / crates.io
29
+ # three-d-asset = {version = "0.7", features = ["hdr", "gltf", "obj", "vol", "pcd", "png", "jpeg", "http", "data-url"] }
30
+ # Fork
31
+ three-d-asset = { git = " https://github.com/embedded-rust-iml/three-d-asset" , branch = " fix-camera-rotation" , features = [" hdr" , " gltf" , " obj" , " vol" , " pcd" , " png" , " jpeg" , " http" , " data-url" ] }
32
+ # Local Checkout / Development
33
+ # three-d-asset = {path = "../three-d-asset", features = ["hdr", "gltf", "obj", "vol", "pcd", "png", "jpeg", "http", "data-url"] }
29
34
thiserror = " 1"
30
35
winit = {version = " 0.28" , optional = true }
31
36
egui = { version = " 0.26" , optional = true }
@@ -47,7 +52,12 @@ instant = "0.1.12"
47
52
48
53
[dev-dependencies ]
49
54
rand = " 0.7"
50
- three-d-asset = {version = " 0.7" , features = [" hdr" , " gltf" , " obj" , " vol" , " pcd" , " png" , " jpeg" , " http" , " data-url" ] }
55
+ # Upstream / crates.io
56
+ # three-d-asset = {version = "0.7", features = ["hdr", "gltf", "obj", "vol", "pcd", "png", "jpeg", "http", "data-url"] }
57
+ # Fork
58
+ three-d-asset = { git = " https://github.com/embedded-rust-iml/three-d-asset" , branch = " fix-camera-rotation" , features = [" hdr" , " gltf" , " obj" , " vol" , " pcd" , " png" , " jpeg" , " http" , " data-url" ] }
59
+ # Local Checkout / Development
60
+ # three-d-asset = {path = "../three-d-asset", features = ["hdr", "gltf", "obj", "vol", "pcd", "png", "jpeg", "http", "data-url"] }
51
61
noise = {version = " 0.6" , default-features = false }
52
62
winit = " 0.28"
53
63
@@ -188,4 +198,4 @@ required-features = ["headless"]
188
198
189
199
[[example ]]
190
200
name = " logo"
191
- path = " examples/logo/src/main.rs"
201
+ path = " examples/logo/src/main.rs"
0 commit comments