summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorBen Bridle <bridle.benjamin@gmail.com>2024-01-20 19:29:53 +1300
committerBen Bridle <bridle.benjamin@gmail.com>2024-01-20 19:31:18 +1300
commit618d891255bc0eb46ce539400fc191416a27aaa5 (patch)
tree4577389e1a2cc18638dcafc8fd8560941060d785 /Cargo.toml
parent03023ea0aa987ec7bbcf2ca5019a1db2dedc3493 (diff)
downloadbedrock-pc-618d891255bc0eb46ce539400fc191416a27aaa5.zip
Update bedrock_core dependency to v2.0.0
Version 2 of bedrock_core contains updated to the Bedrock instruction set, reflecting a recent change to the Bedrock specifications. Updating the dependency allows bytecode assembled by the most recent version of the assembler to evaluate correctly on this emulator.
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index db0a1a3..e22cd85 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -8,7 +8,7 @@ description = "Emulator for running Bedrock programs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-bedrock_core = { git = "git://benbridle.com/bedrock_core", tag = "v1.0.0" }
+bedrock_core = { git = "git://benbridle.com/bedrock_core", tag = "v2.0.0" }
phosphor = { git = "git://benbridle.com/phosphor", tag = "v1.0.0" }
geometry = { git = "git://benbridle.com/geometry", tag = "v1.0.0" }