summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Worthe <justin@worthe-it.co.za>2019-01-07 21:04:45 +0200
committerJustin Worthe <justin@worthe-it.co.za>2019-01-07 21:04:45 +0200
commitce3f8e174ed086265595a344dd43c410e86cc442 (patch)
tree1ff9072d25447ffa552e467ba4043d83adf26fb6
parent1b54b333f4016db7612c3783ca36787fd4046238 (diff)
Changed cargo toml to point at hosted forked gateHEADmain
-rw-r--r--Cargo.lock8
-rw-r--r--Cargo.toml4
2 files changed, 8 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 601ed0e..89d6a87 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -38,8 +38,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
name = "bug_basher"
version = "0.1.0"
dependencies = [
- "gate 0.6.1",
- "gate_build 0.6.0",
+ "gate 0.6.1 (git+git://code.worthe-it.co.za/forks/gate.git)",
+ "gate_build 0.6.0 (git+git://code.worthe-it.co.za/forks/gate.git)",
"rand 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
]
@@ -128,6 +128,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "gate"
version = "0.6.1"
+source = "git+git://code.worthe-it.co.za/forks/gate.git#ef403a5baa0c5a5d850c19f14e67f1b9f1186705"
dependencies = [
"byteorder 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
"gl 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -138,6 +139,7 @@ dependencies = [
[[package]]
name = "gate_build"
version = "0.6.0"
+source = "git+git://code.worthe-it.co.za/forks/gate.git#ef403a5baa0c5a5d850c19f14e67f1b9f1186705"
dependencies = [
"byteorder 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
"image 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -513,6 +515,8 @@ dependencies = [
"checksum enum_primitive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "be4551092f4d519593039259a9ed8daedf0da12e5109c5280338073eaeb81180"
"checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
"checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
+"checksum gate 0.6.1 (git+git://code.worthe-it.co.za/forks/gate.git)" = "<none>"
+"checksum gate_build 0.6.0 (git+git://code.worthe-it.co.za/forks/gate.git)" = "<none>"
"checksum gif 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e2e41945ba23db3bf51b24756d73d81acb4f28d85c3dccc32c6fae904438c25f"
"checksum gl 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "1c73b90c285f02059b34a6c66bc645ba5faa18c0e3ab332e0725654fc71db441"
"checksum gl_generator 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "75d69f914b49d9ff32fdf394cbd798f8c716d74fd19f9cc29da3e99797b2a78d"
diff --git a/Cargo.toml b/Cargo.toml
index 5b2b4ed..499e736 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -6,8 +6,8 @@ authors = ["Justin Worthe <justin@worthe-it.co.za>"]
build = "build.rs"
[dependencies]
-gate = { path = "../gate/gate" }
+gate = { git = "git://code.worthe-it.co.za/forks/gate.git" }
rand = "0.4"
[build-dependencies]
-gate_build = { path = "../gate/gate_build" }
+gate_build = { git = "git://code.worthe-it.co.za/forks/gate.git" }