aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortcmal <me@aria.rip>2024-08-25 17:44:20 +0100
committertcmal <me@aria.rip>2024-08-25 17:44:20 +0100
commitcbe643d91fd3f47ea14ad94a2c0a3f0219a4518e (patch)
tree329d97b5340089e7b9d0ba43a9979a1097481efd
parent83c67f8e304d7e6baf85aa0ea285d7664a4f90cd (diff)
refactor(all): update dependencies
-rw-r--r--examples/render-bsp/Cargo.toml4
-rw-r--r--examples/render-quad/Cargo.toml4
-rw-r--r--stockton-render/Cargo.toml2
-rw-r--r--stockton-types/Cargo.toml3
4 files changed, 4 insertions, 9 deletions
diff --git a/examples/render-bsp/Cargo.toml b/examples/render-bsp/Cargo.toml
index f0458a6..a68223f 100644
--- a/examples/render-bsp/Cargo.toml
+++ b/examples/render-bsp/Cargo.toml
@@ -6,9 +6,7 @@ authors = ["Oscar <oscar.shrimpton.personal@gmail.com>"]
[dependencies]
stockton-render = { path = "../../stockton-render", features = ["vulkan"] }
stockton-types = { path = "../../stockton-types" }
-stockton-bsp = "2.0.0"
+stockton-bsp = { git = "https://github.com/tcmal/rust-bsp.git" }
winit = "^0.21"
-log = "0.4.0"
simple_logger = "1.0"
-rand = "0.7"
image = "0.23.2"
diff --git a/examples/render-quad/Cargo.toml b/examples/render-quad/Cargo.toml
index 65e9b94..d376605 100644
--- a/examples/render-quad/Cargo.toml
+++ b/examples/render-quad/Cargo.toml
@@ -6,9 +6,7 @@ authors = ["Oscar <oscar.shrimpton.personal@gmail.com>"]
[dependencies]
stockton-render = { path = "../../stockton-render", features = ["vulkan"] }
stockton-types = { path = "../../stockton-types" }
-stockton-bsp = "2.0.0"
+stockton-bsp = { git = "https://github.com/tcmal/rust-bsp.git" }
winit = "^0.21"
-log = "0.4.0"
simple_logger = "1.0"
-rand = "0.7"
image = "0.23.2"
diff --git a/stockton-render/Cargo.toml b/stockton-render/Cargo.toml
index 2d9b3b7..4d2cd47 100644
--- a/stockton-render/Cargo.toml
+++ b/stockton-render/Cargo.toml
@@ -4,7 +4,7 @@ version = "0.1.0"
authors = ["Oscar <oscar.shrimpton.personal@gmail.com>"]
[dependencies]
-stockton-bsp = "2.0.0"
+stockton-bsp = { git = "https://github.com/tcmal/rust-bsp.git" }
stockton-types = { path = "../stockton-types" }
winit = "^0.21"
gfx-hal = "^0.5"
diff --git a/stockton-types/Cargo.toml b/stockton-types/Cargo.toml
index 9c685e8..0ce5c40 100644
--- a/stockton-types/Cargo.toml
+++ b/stockton-types/Cargo.toml
@@ -6,5 +6,4 @@ edition = "2018"
[dependencies]
nalgebra-glm = "^0.6"
-stockton-bsp = "2.0.0"
-downcast-rs = "1.0.4" \ No newline at end of file
+stockton-bsp = { git = "https://github.com/tcmal/rust-bsp.git" }