diff --git a/nym-wallet/src-tauri/Cargo.toml b/nym-wallet/src-tauri/Cargo.toml index f9e71561a2..a368c16714 100644 --- a/nym-wallet/src-tauri/Cargo.toml +++ b/nym-wallet/src-tauri/Cargo.toml @@ -13,13 +13,13 @@ rust-version = "1.56" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [build-dependencies] -tauri-build = { version = "1.0.0-rc.3" } +tauri-build = { version = "1.0.0-rc.3", features = [] } [dependencies] serde_json = "1.0" serde = { version = "1.0", features = ["derive"] } strum = { version = "0.23", features = ["derive"] } -tauri = { version = "1.0.0-rc.3", features = ["shell-open"] } +tauri = { version = "1.0.0-rc.3", features = ["clipboard-all", "shell-open", "window-maximize"] } tokio = { version = "1.10", features = ["sync"] } dirs = "4.0" bip39 = "1.0" diff --git a/nym-wallet/src-tauri/tauri.conf.json b/nym-wallet/src-tauri/tauri.conf.json index 5465a7dfb8..f939f48e1d 100644 --- a/nym-wallet/src-tauri/tauri.conf.json +++ b/nym-wallet/src-tauri/tauri.conf.json @@ -49,6 +49,12 @@ "active": false }, "allowlist": { + "window": { + "maximize": true + }, + "clipboard": { + "all": true + }, "shell": { "open": true }