I'm debugging my Rust project with
rust-lldb target/debug/my_project
I can set up breakpoints directly inside my project and they're working fine, e.g.
b function_inside_my_crate
Breakpoint 1: (...)
What I can't do is set up breakpoint inside my dependency from crates.io, e.g.
b function_inside_dependency
Breakpoint 1: no locations (pending).
WARNING: Unable to resolve breakpoint to any actual locations.
How can I create a breakpoint inside a dependency?