2 Commits
v0.2.1 ... wip

5 changed files with 5 additions and 9 deletions

2
src-tauri/Cargo.lock generated
View File

@ -70,7 +70,7 @@ checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8"
[[package]]
name = "app"
version = "0.2.1"
version = "0.2.0"
dependencies = [
"argon2",
"auto-launch",

View File

@ -1,6 +1,6 @@
[package]
name = "app"
version = "0.2.1"
version = "0.2.0"
description = "A Tauri App"
authors = ["you"]
license = ""

View File

@ -89,11 +89,7 @@ pub fn exec(args: &ArgMatches) -> Result<(), CliError> {
}
#[cfg(unix)]
{
let e = cmd.exec(); // never returns if successful
Err(ExecError::ExecutionFailed(e))?;
Ok(())
}
cmd.exec().map_err(|e| ExecError::ExecutionFailed(e))?;
#[cfg(windows)]
{

View File

@ -275,7 +275,7 @@ impl Crypto {
#[cfg(not(debug_assertions))]
const TIME_COST: u32 = 8;
/// But since this takes a million years without optimizations,
/// But since this takes a million years in an unoptimized build,
/// we turn it way down in debug builds.
#[cfg(debug_assertions)]
const MEM_COST: u32 = 48 * 1024;

View File

@ -8,7 +8,7 @@
},
"package": {
"productName": "creddy",
"version": "0.2.1"
"version": "0.2.0"
},
"tauri": {
"allowlist": {