0

I would like to debug my rust source code by clicking on "Debug" in the UI (see screenshot). I need to enable the nightly flag for my code to work. How can I update the default debug configuration to pass the nightly flag? To make things more complex, I'm connected to a remote box via SSH.

Screenshot

mattes
  • 8,936
  • 5
  • 48
  • 73
  • Shepmasters solution from [How to execute cargo test using the nightly channel?](https://stackoverflow.com/questions/48593858/how-to-execute-cargo-test-using-the-nightly-channel) should work for you. – cafce25 May 06 '23 at 08:27

1 Answers1

2

You can use the standard mechanisms to specify nightly using a toolchain override. If your code should always use nightly, your best bet is to either:

  • set a override via rustup override set nightly in your project's directory
  • create a rust-toolchain.toml file with [toolchain] channel = "nightly"

That way all Cargo commands in your project will use it.

kmdreko
  • 42,554
  • 6
  • 57
  • 106