Skip to content

Commit

Permalink
Add proper version
Browse files Browse the repository at this point in the history
  • Loading branch information
cwfitzgerald committed Aug 22, 2021
1 parent 5dee87f commit 8c6ae29
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions examples/cube/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ env_logger = { version = "0.9", default-features = false, features = ["termcolor
# Linear algebra library
glam = "0.17"
# Renderer core
rend3 = { path = "../../rend3" }
rend3 = { version = "^0.0.6", path = "../../rend3" }
# Programmable render list that dictates how the scene renders
rend3-pbr = { path = "../../rend3-pbr" }
rend3-pbr = { version = "^0.0.6", path = "../../rend3-pbr" }
# Provides `block_on` to wait for futures from sync code
pollster = "0.2"
# windowing
Expand Down
4 changes: 2 additions & 2 deletions examples/gltf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ glam = "0.17"
# parsing model files
gltf = { version = "0.16", default-features = false, features = [ "import", "utils" ] }
# Renderer core
rend3 = { path = "../../rend3"}
rend3 = { version = "^0.0.6", path = "../../rend3"}
# Programmable render list that dictates how the scene renders
rend3-pbr = { path = "../../rend3-pbr" }
rend3-pbr = { version = "^0.0.6", path = "../../rend3-pbr" }
# Provides `block_on` to wait for futures from sync code
pollster = "0.2"
# windowing
Expand Down
6 changes: 3 additions & 3 deletions examples/scene-viewer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ image = { version = "0.23", default-features = false, features = ["png", "jpeg",
histogram = "0.6"
pico-args = "0.4"
pollster = "0.2"
rend3 = { path = "../../rend3" }
rend3-gltf = { path = "../../rend3-gltf" }
rend3-pbr = { path = "../../rend3-pbr" }
rend3 = { version = "^0.0.6", path = "../../rend3" }
rend3-gltf = { version = "^0.0.6", path = "../../rend3-gltf" }
rend3-pbr = { version = "^0.0.6", path = "../../rend3-pbr" }
smallvec = "1"
winit = "0.25"

2 changes: 1 addition & 1 deletion rend3-gltf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ gltf = { version = "0.16", default-features = false, features = ["KHR_lights_pun
glam = "0.17"
fnv = "1"
image = "0.23"
rend3 = { path = "../rend3" }
rend3 = { version = "^0.0.6", path = "../rend3" }
thiserror = "1"
2 changes: 1 addition & 1 deletion rend3-pbr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ glam = { version = "0.17", features = ["bytemuck"] }
include_dir = "0.6"
log = "0.4"
parking_lot = { version = "0.11" }
rend3 = { path = "../rend3" }
rend3 = { version = "^0.0.6", path = "../rend3" }
wgpu = { version = "0.10", features = ["trace", "spirv", "webgl"] }

2 changes: 1 addition & 1 deletion rend3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ log = "0.4"
indexmap = "1"
parking_lot = { version = "0.11" }
range-alloc = "0.1"
rend3-types = { path = "../rend3-types" }
rend3-types = { version = "^0.0.6", path = "../rend3-types" }
raw-window-handle = "0.3"
smallvec = "1"
smartstring = "0.2"
Expand Down

0 comments on commit 8c6ae29

Please sign in to comment.