Update rust dependencies and fix build script

This commit is contained in:
Bruno Bernardino 2022-06-20 11:01:57 +01:00
parent bff6491cac
commit 0ccb1b45f3
No known key found for this signature in database
GPG Key ID: D1B0A69ADD114ECE
4 changed files with 345 additions and 349 deletions

View File

@ -48,8 +48,8 @@
"dev": "lerna run --parallel --scope '@padloc/{server,pwa}' --parallel dev",
"tauri:dev": "lerna run --parallel --scope '@padloc/{server,tauri}' --parallel dev",
"tauri:update": "lerna run update",
"tauri:build": "lerna run build:production",
"tauri:build:debug": "lerna run build --scope @padloc/tauri",
"tauri:build": "lerna run build --scope @padloc/tauri",
"tauri:build:debug": "lerna run build:debug",
"repl": "cd packages/server && npm run repl && cd ../..",
"test": "lerna run test",
"test:e2e": "concurrently --prefix=name --prefix-length=30 --kill-others --success=first -n app,v3-app,maildev,cypress \"PL_DATA_BACKEND=memory PL_DISABLE_SW=true PL_EMAIL_BACKEND=smtp PL_EMAIL_SMTP_HOST=localhost PL_EMAIL_SMTP_PORT=1025 PL_EMAIL_SMTP_IGNORE_TLS=true npm start\" \"npm run start:v3\" \"npx maildev\" \"./node_modules/.bin/wait-on tcp:localhost:8080 && CYPRESS_CRASH_REPORTS=0 cypress run\"",

File diff suppressed because it is too large Load Diff

View File

@ -10,7 +10,7 @@ edition = "2021"
build = "src/build.rs"
[build-dependencies.tauri-build]
version = "1.0.0-beta.4"
version = "1.0.0"
features = [ ]
[dependencies]
@ -21,7 +21,7 @@ serde_json = "1.0"
features = [ "derive" ]
[dependencies.tauri]
version = "1.0.0-rc.4"
version = "1.0.0"
features = [ "updater" ]
[features]

View File

@ -56,7 +56,9 @@
},
"updater": {
"active": true,
"endpoints": ["https://github.com/padloc/padloc/releases/download/latest/tauri-update.json"],
"endpoints": [
"https://github.com/padloc/padloc/releases/download/latest/tauri-update.json"
],
"dialog": true,
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDM5NDMxQ0I3MTA3NDU3RjIKUldUeVYzUVF0eHhET1ZpNUZDYWY3Zlk1aUN1ZkpXcU5wS0pSTERSay91ODBpWlBIcTViNk11RHgK"
},
@ -76,4 +78,4 @@
"csp": null
}
}
}
}