My actor.rpg avatar walking around on a GBA game
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update to v0.23.1

GBA bot 2d4eaf2d 257eae23

+29 -1
+15
.zed/debug.json
··· 1 + [ 2 + { 3 + "label": "Debug: debug", 4 + "request": "attach", 5 + "adapter": "CodeLLDB", 6 + "program": "${ZED_WORKTREE_ROOT}/target/thumbv4t-none-eabi/debug/agb_template", 7 + "build": "Build: debug", 8 + "sourceLanguages": ["rust"], 9 + "initCommands": ["settings set target.default-arch armv4t"], 10 + "processCreateCommands": [ 11 + "script import subprocess; subprocess.Popen(['mgba-qt', '-g', '${ZED_WORKTREE_ROOT}/target/thumbv4t-none-eabi/debug/agb_template'])", 12 + "gdb-remote localhost:2345", 13 + ], 14 + }, 15 + ]
+10
.zed/tasks.json
··· 1 + [ 2 + { 3 + "label": "Build: debug", 4 + "command": "cargo", 5 + "args": ["build"], 6 + "env": { 7 + "CARGO_TARGET_DIR": "${ZED_WORKTREE_ROOT}/target", 8 + }, 9 + }, 10 + ]
+4 -1
Cargo.toml
··· 7 7 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 8 9 9 [dependencies] 10 - agb = "0.22.6" 10 + agb = "0.23.1" 11 11 12 12 [profile.dev] 13 13 opt-level = 3 14 14 debug = true 15 + 16 + [profile.dev.build-override] 17 + opt-level = 3 15 18 16 19 [profile.release] 17 20 opt-level = 3