The lldb-dap VSCode's extension isn't setting the environment variables from my launch.json.
{
"type": "lldb-dap",
"request": "launch",
"name": "Debug (lldb-dap)",
"program": "${workspaceFolder}/target/debug/hydrogen",
"preLaunchTask": "rust: cargo build",
"cwd": "${workspaceRoot}",
"env": {
"RUST_LOG": "hydrogen=trace",
},
}