Skip to content

Commit 7726c99

Browse files
committed
Use the forked three-d-asset, branch 'fix-camera-rotation'
1 parent 4c7c92a commit 7726c99

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

Cargo.toml

+13-3
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,12 @@ egui-gui = ["egui_glow", "egui", "getrandom"] # Additional GUI features
2525
[dependencies]
2626
glow = "0.13"
2727
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"] }
2934
thiserror = "1"
3035
winit = {version = "0.28", optional = true}
3136
egui = { version = "0.26", optional = true }
@@ -47,7 +52,12 @@ instant = "0.1.12"
4752

4853
[dev-dependencies]
4954
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"] }
5161
noise = {version = "0.6", default-features = false}
5262
winit = "0.28"
5363

@@ -188,4 +198,4 @@ required-features = ["headless"]
188198

189199
[[example]]
190200
name = "logo"
191-
path = "examples/logo/src/main.rs"
201+
path = "examples/logo/src/main.rs"

0 commit comments

Comments
 (0)