diff options
-rw-r--r-- | examples/render-bsp/Cargo.toml | 4 | ||||
-rw-r--r-- | examples/render-quad/Cargo.toml | 4 | ||||
-rw-r--r-- | stockton-render/Cargo.toml | 2 | ||||
-rw-r--r-- | stockton-types/Cargo.toml | 3 |
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" } |