Skip to content

Commit a212fb2

Browse files
committed
Update to 0.0.2
1 parent 4766f94 commit a212fb2

File tree

8 files changed

+25
-25
lines changed

8 files changed

+25
-25
lines changed

Cargo.lock

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/cube/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rend3-cube-example"
33
license = "MIT OR Apache-2.0 OR Zlib"
4-
version = "0.0.1"
4+
version = "0.0.2"
55
authors = ["Connor Fitzgerald <[email protected]>"]
66
edition = "2018"
77
publish = false
@@ -16,8 +16,8 @@ path = "src/main.rs"
1616
# Linear algebra library
1717
glam = "0.12"
1818
# Renderer
19-
rend3 = { path = "../../rend3", version = "0.0.1" }
20-
rend3-list = { path = "../../rend3-list", version = "0.0.1" }
19+
rend3 = { path = "../../rend3", version = "0.0.2" }
20+
rend3-list = { path = "../../rend3-list", version = "0.0.2" }
2121
# Provides `block_on` to wait for futures from sync code
2222
pollster = "0.2"
2323
# wgpu-aware logging

examples/gltf/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rend3-gltf-example"
33
license = "MIT OR Apache-2.0 OR Zlib"
4-
version = "0.0.1"
4+
version = "0.0.2"
55
authors = ["Connor Fitzgerald <[email protected]>"]
66
edition = "2018"
77
publish = false
@@ -18,8 +18,8 @@ glam = "0.12"
1818
# parsing model files
1919
gltf = { version = "0.15.2", features = [ "utils" ] }
2020
# Renderer
21-
rend3 = { path = "../../rend3", version = "0.0.1" }
22-
rend3-list = { path = "../../rend3-list", version = "0.0.1" }
21+
rend3 = { path = "../../rend3", version = "0.0.2" }
22+
rend3-list = { path = "../../rend3-list", version = "0.0.2" }
2323
# Provides `block_on` to wait for futures from sync code
2424
pollster = "0.2"
2525
# wgpu-aware logging

examples/imgui/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rend3-imgui-example"
33
license = "MIT OR Apache-2.0 OR Zlib"
4-
version = "0.0.1"
4+
version = "0.0.2"
55
authors = ["Connor Fitzgerald <[email protected]>"]
66
edition = "2018"
77
publish = false
@@ -16,8 +16,8 @@ path = "src/main.rs"
1616
# Linear algebra library
1717
glam = "0.12"
1818
# Renderer
19-
rend3 = { path = "../../rend3", version = "0.0.1" }
20-
rend3-list = { path = "../../rend3-list", version = "0.0.1" }
19+
rend3 = { path = "../../rend3", version = "0.0.2" }
20+
rend3-list = { path = "../../rend3-list", version = "0.0.2" }
2121
# imgui and integrations
2222
imgui = "0.7"
2323
imgui-winit-support = "0.7"

examples/scene-viewer/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rend3-scene-viewer-example"
33
license = "MIT OR Apache-2.0 OR Zlib"
4-
version = "0.0.1"
4+
version = "0.0.2"
55
authors = ["Connor Fitzgerald <[email protected]>"]
66
edition = "2018"
77
publish = false
@@ -21,9 +21,9 @@ image = { version = "0.23", default-features = false, features = ["png", "jpeg",
2121
histogram = "0.6"
2222
pico-args = "0.4"
2323
pollster = "0.2"
24-
rend3 = { path = "../../rend3", version = "0.0.1" }
25-
rend3-gltf = { path = "../../rend3-gltf", version = "0.0.1" }
26-
rend3-list = { path = "../../rend3-list", version = "0.0.1" }
24+
rend3 = { path = "../../rend3", version = "0.0.2" }
25+
rend3-gltf = { path = "../../rend3-gltf", version = "0.0.2" }
26+
rend3-list = { path = "../../rend3-list", version = "0.0.2" }
2727
smallvec = "1"
2828
tracing = { version = "0.1", default-features = false, features = ["std"] }
2929
wgpu = "0.7"

rend3-gltf/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rend3-gltf"
3-
version = "0.0.1"
3+
version = "0.0.2"
44
authors = ["Connor Fitzgerald <[email protected]>"]
55
edition = "2018"
66
description = "gltf scene and model loader for rend3"
@@ -16,5 +16,5 @@ glam = "0.12"
1616
futures-util = "0.3"
1717
fnv = "1"
1818
image = "0.23"
19-
rend3 = { version = "0.0.1", path = "../rend3" }
19+
rend3 = { version = "0.0.2", path = "../rend3" }
2020
thiserror = "1"

rend3-list/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rend3-list"
3-
version = "0.0.1"
3+
version = "0.0.2"
44
authors = ["Connor Fitzgerald <[email protected]>"]
55
edition = "2018"
66
description = "default renderlist rend3"
@@ -10,4 +10,4 @@ keywords = ["3d", "graphics", "gpu", "renderer", "wgpu"]
1010
categories = ["game-development", "graphics", "rendering", "rendering::engine"]
1111

1212
[dependencies]
13-
rend3 = { version = "0.0.1", path = "../rend3" }
13+
rend3 = { version = "0.0.2", path = "../rend3" }

rend3/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rend3"
3-
version = "0.0.1"
3+
version = "0.0.2"
44
authors = ["Connor Fitzgerald <[email protected]>"]
55
edition = "2018"
66
description = "Easy to use, customizable, efficient 3D renderer library built on wgpu."

0 commit comments

Comments
 (0)