diff options
author | Ben Bridle <ben@derelict.engineering> | 2024-10-31 12:09:56 +1300 |
---|---|---|
committer | Ben Bridle <ben@derelict.engineering> | 2024-10-31 12:10:01 +1300 |
commit | 82d70d1458efa3f566a1e774da98734ff5ec939a (patch) | |
tree | b4da9e75252be4d770dda647bda7e33f60409701 /Cargo.toml | |
parent | 8efe2561a99660147871a688bc02e4bb4c6cde60 (diff) | |
download | bedrock-pc-82d70d1458efa3f566a1e774da98734ff5ec939a.zip |
Fix source code merge order
This commit updates bedrock-asm to v4.0.3, 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.toml | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6,7 +6,7 @@ edition = "2021" description = "Emulator for running Bedrock programs" [dependencies] -bedrock-asm = { git = "git://benbridle.com/bedrock_asm", tag = "v4.0.2" } +bedrock-asm = { git = "git://benbridle.com/bedrock_asm", tag = "v4.0.3" } 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" } |