diff options
author | Ben Bridle <bridle.benjamin@gmail.com> | 2024-01-20 19:29:53 +1300 |
---|---|---|
committer | Ben Bridle <bridle.benjamin@gmail.com> | 2024-01-20 19:31:18 +1300 |
commit | 618d891255bc0eb46ce539400fc191416a27aaa5 (patch) | |
tree | 4577389e1a2cc18638dcafc8fd8560941060d785 /Cargo.toml | |
parent | 03023ea0aa987ec7bbcf2ca5019a1db2dedc3493 (diff) | |
download | bedrock-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.toml | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" } |