@@ -25,7 +25,12 @@ egui-gui = ["egui_glow", "egui", "getrandom"] # Additional GUI features
2525[dependencies ]
2626glow = " 0.13"
2727cgmath = " 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"] }
2934thiserror = " 1"
3035winit = {version = " 0.28" , optional = true }
3136egui = { version = " 0.26" , optional = true }
@@ -47,7 +52,12 @@ instant = "0.1.12"
4752
4853[dev-dependencies ]
4954rand = " 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"] }
5161noise = {version = " 0.6" , default-features = false }
5262winit = " 0.28"
5363
@@ -188,4 +198,4 @@ required-features = ["headless"]
188198
189199[[example ]]
190200name = " logo"
191- path = " examples/logo/src/main.rs"
201+ path = " examples/logo/src/main.rs"
0 commit comments