summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorBen Bridle <ben@derelict.engineering>2024-11-06 07:22:10 +1300
committerBen Bridle <ben@derelict.engineering>2024-11-06 07:22:10 +1300
commit280346cb0379f8644c9ae4df5183243b86ccce08 (patch)
treefa7264cc7cae9b04706754e38b37be12942d2e3d /Cargo.toml
parent81a6b0da7a507214a01dc3a4513d8b73525e4381 (diff)
downloadbedrock-pc-280346cb0379f8644c9ae4df5183243b86ccce08.zip
Fix source code merge order
This commit updates bedrock-asm to v4.0.6, which fixes an issue where the root source unit of a project could sometimes be merged after library code, preventing the program from running correctly.
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 6080671..fc88310 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -6,7 +6,7 @@ edition = "2021"
description = "Emulator for running Bedrock programs"
[dependencies]
-bedrock-asm = { git = "git://benbridle.com/bedrock_asm", tag = "v4.0.5" }
+bedrock-asm = { git = "git://benbridle.com/bedrock_asm", tag = "v4.0.6" }
bedrock-core = { git = "git://benbridle.com/bedrock_core", tag = "v5.0.0" }
phosphor = { git = "git://benbridle.com/phosphor", tag = "v3.1.0" }
geometry = { git = "git://benbridle.com/geometry", tag = "v1.0.0" }