Compare commits

...

5 Commits

Author SHA1 Message Date
dimeola eca06d9208 vscode launch file added for debugging 5 years ago
dimeola 1538a6d8d4 come back to irigin text 5 years ago
dimeola 44ff5595ab
testing signature 4 5 years ago
dimeola 6367724bc9
testing signature 3 5 years ago
dimeola 1e0ef27492
only for testing 5 years ago

@ -0,0 +1,64 @@
{
// 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 unit tests in library 'rustotpony'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=rustotpony"
],
"filter": {
"name": "rustotpony",
"kind": "lib"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'totp'",
"cargo": {
"args": [
"build",
"--bin=totp",
"--package=rustotpony"
],
"filter": {
"name": "totp",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'totp'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=totp",
"--package=rustotpony"
],
"filter": {
"name": "totp",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}

@ -26,7 +26,7 @@ impl Cli {
}
fn get_secret() -> String {
rpassword::prompt_password_stdout("Enter your database pass: ").unwrap()
rpassword::prompt_password_stdout("Please, enter your database pass: ").unwrap()
}
// fn get_secret_from_storage() -> String { }

Loading…
Cancel
Save