Skip to content

Commit cfcb4e3

Browse files
committed
Update three-d-asset version
1 parent 12f3400 commit cfcb4e3

File tree

21 files changed

+22
-22
lines changed

21 files changed

+22
-22
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ text = ["swash", "lyon"] # Text mesh generation features
2626
[dependencies]
2727
glow = "0.16"
2828
cgmath = "0.18"
29-
three-d-asset = "0.9"
29+
three-d-asset = {git = "https://github.com/asny/three-d-asset"}
3030
thiserror = "2"
3131
open-enum = "0.5"
3232
winit = {version = "0.28", optional = true}
@@ -51,7 +51,7 @@ instant = "0.1.11"
5151

5252
[dev-dependencies]
5353
rand = "0.7"
54-
three-d-asset = {version = "0.9", features = ["hdr", "gltf", "obj", "vol", "pcd", "png", "jpeg", "http", "data-url"] }
54+
three-d-asset = {git = "https://github.com/asny/three-d-asset", features = ["hdr", "gltf", "obj", "vol", "pcd", "png", "jpeg", "http", "data-url"] }
5555
noise = {version = "0.6", default-features = false}
5656
winit = "0.28"
5757

examples/animation/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ crate-type = ["cdylib"]
99

1010
[dependencies]
1111
three-d = { path = "../../" }
12-
three-d-asset = {version = "0.9", features = ["gltf", "png", "jpeg", "http", "data-url"] }
12+
three-d-asset = {git = "https://github.com/asny/three-d-asset", features = ["gltf", "png", "jpeg", "http", "data-url"] }
1313

1414
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
1515
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }

examples/effect/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ crate-type = ["cdylib"]
99

1010
[dependencies]
1111
three-d = { path = "../../" }
12-
three-d-asset = {version = "0.9",features = ["obj", "http"] }
12+
three-d-asset = {git = "https://github.com/asny/three-d-asset",features = ["obj", "http"] }
1313

1414
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
1515
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }

examples/environment/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ crate-type = ["cdylib"]
99

1010
[dependencies]
1111
three-d = { path = "../../", features=["egui-gui"] }
12-
three-d-asset = {version = "0.9",features = ["hdr", "http"] }
12+
three-d-asset = {git = "https://github.com/asny/three-d-asset",features = ["hdr", "http"] }
1313

1414
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
1515
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }

examples/headless/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ crate-type = ["cdylib"]
99

1010
[dependencies]
1111
three-d = { path = "../../", features=["headless"] }
12-
three-d-asset = {version = "0.9", features=["png"]}
12+
three-d-asset = {git = "https://github.com/asny/three-d-asset", features=["png"]}
1313

1414
[target.'cfg(target_arch = "wasm32")'.dependencies]
1515
log = "0.4"

examples/image/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ crate-type = ["cdylib"]
99

1010
[dependencies]
1111
three-d = { path = "../../", features=["egui-gui"] }
12-
three-d-asset = {version = "0.9",features = ["hdr", "http"] }
12+
three-d-asset = {git = "https://github.com/asny/three-d-asset",features = ["hdr", "http"] }
1313

1414
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
1515
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }

examples/imposters/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ crate-type = ["cdylib"]
99

1010
[dependencies]
1111
three-d = { path = "../../" }
12-
three-d-asset = {version = "0.9",features = ["obj", "jpeg", "http"] }
12+
three-d-asset = {git = "https://github.com/asny/three-d-asset",features = ["obj", "jpeg", "http"] }
1313

1414
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
1515
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }

examples/lighting/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ crate-type = ["cdylib"]
99

1010
[dependencies]
1111
three-d = { path = "../../", features=["egui-gui"] }
12-
three-d-asset = {version = "0.9",features = ["gltf", "jpeg", "http"] }
12+
three-d-asset = {git = "https://github.com/asny/three-d-asset",features = ["gltf", "jpeg", "http"] }
1313

1414
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
1515
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }

examples/lights/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ crate-type = ["cdylib"]
99

1010
[dependencies]
1111
three-d = { path = "../../", features=["egui-gui"] }
12-
three-d-asset = {version = "0.9",features = ["gltf", "png", "jpeg", "http"] }
12+
three-d-asset = {git = "https://github.com/asny/three-d-asset",features = ["gltf", "png", "jpeg", "http"] }
1313

1414
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
1515
rand = "0.7"

examples/logo/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ crate-type = ["cdylib"]
99

1010
[dependencies]
1111
three-d = { path = "../../" }
12-
three-d-asset = {version = "0.9",features = ["png", "http"] }
12+
three-d-asset = {git = "https://github.com/asny/three-d-asset",features = ["png", "http"] }
1313

1414
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
1515
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }

0 commit comments

Comments
 (0)