diff --git a/Cargo.lock b/Cargo.lock index 353a4dc..fe211e8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = "0.0.1" dependencies = [ "byteorder 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", "cgmath 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "collision 0.5.1 (git+https://github.com/csherratt/collision-rs?rev=f80825e)", + "collision 0.5.1 (git+https://github.com/TheUnnamedDude/collision-rs?rev=f80825e)", "flate2 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "image 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -75,7 +75,7 @@ dependencies = [ [[package]] name = "collision" version = "0.5.1" -source = "git+https://github.com/csherratt/collision-rs?rev=f80825e#f80825eca687ff1053ff492e54fa782944c9cf6b" +source = "git+https://github.com/TheUnnamedDude/collision-rs?rev=f80825e#f80825eca687ff1053ff492e54fa782944c9cf6b" dependencies = [ "cgmath 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "num 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", @@ -546,7 +546,7 @@ name = "steven_blocks" version = "0.0.1" dependencies = [ "cgmath 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "collision 0.5.1 (git+https://github.com/csherratt/collision-rs?rev=f80825e)", + "collision 0.5.1 (git+https://github.com/TheUnnamedDude/collision-rs?rev=f80825e)", "lazy_static 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", "steven_shared 0.0.1", ] @@ -693,7 +693,7 @@ dependencies = [ "checksum bzip2 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7c30a578393daf45ee6101aa043afa8d47a7e70f05032b15b88b28a7111c6a53" "checksum bzip2-sys 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "81c91586be5d862524de53126d49c11fef83dc1a8e8034235f37372e3b2da311" "checksum cgmath 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "75e93b3eb66e74ffb946a69ff54c6026c1399960241c843f249ea0127b96b9f6" -"checksum collision 0.5.1 (git+https://github.com/csherratt/collision-rs?rev=f80825e)" = "" +"checksum collision 0.5.1 (git+https://github.com/TheUnnamedDude/collision-rs?rev=f80825e)" = "" "checksum color_quant 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a475fc4af42d83d28adf72968d9bcfaf035a1a9381642d8e85d8a04957767b0d" "checksum cookie 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "0e3d6405328b6edb412158b3b7710e2634e23f3614b9bb1c412df7952489a626" "checksum deque 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "1614659040e711785ed8ea24219140654da1729f3ec8a47a9719d041112fe7bf" diff --git a/Cargo.toml b/Cargo.toml index 43e78ff..b47895a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ rustc-serialize = "0.3.18" log = "0.3.5" cgmath = "0.7.0" lazy_static = "0.1.15" -collision = {git = "https://github.com/csherratt/collision-rs", rev = "f80825e"} +collision = {git = "https://github.com/TheUnnamedDude/collision-rs", rev = "f80825e"} openssl = "0.7.8" # clippy = "*" diff --git a/blocks/Cargo.lock b/blocks/Cargo.lock index ead3cd5..42fa106 100644 --- a/blocks/Cargo.lock +++ b/blocks/Cargo.lock @@ -3,7 +3,7 @@ name = "steven_blocks" version = "0.0.1" dependencies = [ "cgmath 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "collision 0.5.1 (git+https://github.com/csherratt/collision-rs?rev=f80825e)", + "collision 0.5.1 (git+https://github.com/TheUnnamedDude/collision-rs?rev=f80825e)", "lazy_static 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", "steven_shared 0.0.1", ] @@ -21,7 +21,7 @@ dependencies = [ [[package]] name = "collision" version = "0.5.1" -source = "git+https://github.com/csherratt/collision-rs?rev=f80825e#f80825eca687ff1053ff492e54fa782944c9cf6b" +source = "git+https://github.com/TheUnnamedDude/collision-rs?rev=f80825e#f80825eca687ff1053ff492e54fa782944c9cf6b" dependencies = [ "cgmath 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "num 0.1.31 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/blocks/Cargo.toml b/blocks/Cargo.toml index 1dbade6..9a82d68 100644 --- a/blocks/Cargo.toml +++ b/blocks/Cargo.toml @@ -6,7 +6,7 @@ authors = [ "Thinkofdeath " ] [dependencies] lazy_static = "0.1.15" cgmath = "0.7.0" -collision = {git = "https://github.com/csherratt/collision-rs", rev = "f80825e"} +collision = {git = "https://github.com/TheUnnamedDude/collision-rs", rev = "f80825e"} [dependencies.steven_shared]