Sep 3, 2018 · 1 min read
Following this very nice tutorial https://bryce.fisher-fleig.org/blog/debugging-rust-programs-with-lldb/index.html I found out that it is possible to make it work with LLDB, just needed to map to target/debug/deps/<bin> instead of target/debug/<bin>
{ "type": "lldb", "request": "launch", "name": "debug", "program": "${workspaceFolder}/target/debug/deps/<mybin-number>","args": ["arg1","arg2"],"cwd": "${workspaceFolder}"}
Hop that helps!
