mirror of
https://gitlab.redox-os.org/CoffeeCode/redox-ssh.git
synced 2025-12-28 15:02:18 +01:00
`rust-crypto` has not been updated for 8 years. One of its dependencies, `rustc-serialize` is deprecated and does not build on Redox. builts on `ed324eb4391491c3b1897a8ee0671533ccb41c13`
51 lines
No EOL
1.4 KiB
JSON
51 lines
No EOL
1.4 KiB
JSON
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// Hover to view descriptions of existing attributes.
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "lldb",
|
|
"request": "launch",
|
|
"name": "Debug executable 'ssh-keygen'",
|
|
"cargo": {
|
|
"args": [
|
|
"build",
|
|
"--bin=ssh-keygen",
|
|
"--package=redox-ssh"
|
|
],
|
|
"filter": {
|
|
"name": "ssh-keygen",
|
|
"kind": "bin"
|
|
}
|
|
},
|
|
"args": [],
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
{
|
|
"type": "lldb",
|
|
"request": "launch",
|
|
"name": "Debug executable 'sshd'",
|
|
"cargo": {
|
|
"args": [
|
|
"build",
|
|
"--bin=sshd",
|
|
"--package=redox-ssh"
|
|
],
|
|
"filter": {
|
|
"name": "sshd",
|
|
"kind": "bin"
|
|
}
|
|
},
|
|
"env": {
|
|
"RUST_BACKTRACE": "1"
|
|
},
|
|
"args": [
|
|
"-p", "2222",
|
|
"-vvv",
|
|
"-f"
|
|
],
|
|
"cwd": "${workspaceFolder}"
|
|
}
|
|
]
|
|
} |