Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
5a7d5008a3 |
|||
| 51e83b8d9e | |||
| 9d5517fe30 | |||
| a88bda43eb | |||
| 16a288725d | |||
|
d30de8b404 |
|||
|
be8ea09cd6 |
|||
| 8da83a4900 | |||
|
2dc5be85e3 |
|||
| e11f46bd7c |
5 changed files with 374 additions and 578 deletions
940
apps/tauri/src-tauri/Cargo.lock
generated
940
apps/tauri/src-tauri/Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
|
@ -15,7 +15,7 @@ name = "mobile_lib"
|
|||
crate-type = ["staticlib", "cdylib", "rlib"]
|
||||
|
||||
[build-dependencies]
|
||||
tauri-build = { git = "https://github.com/tauri-apps/tauri", rev = "20f3f2515c65ca1e115991c3ef3625e2c29c1bbb", features = [] }
|
||||
tauri-build = { git = "https://github.com/tauri-apps/tauri", rev = "4af26a3f7f8b692d62cca549bbacd93f5ce90b41", features = [] }
|
||||
|
||||
[dependencies]
|
||||
tauri-plugin-opener = "2"
|
||||
|
|
@ -44,4 +44,4 @@ tauri-plugin-barcode-scanner = "2"
|
|||
|
||||
[patch.crates-io.tauri]
|
||||
git = "https://github.com/tauri-apps/tauri"
|
||||
rev = "20f3f2515c65ca1e115991c3ef3625e2c29c1bbb"
|
||||
rev = "4af26a3f7f8b692d62cca549bbacd93f5ce90b41"
|
||||
|
|
|
|||
|
|
@ -6,10 +6,7 @@
|
|||
"main"
|
||||
],
|
||||
"permissions": [
|
||||
"core:default",
|
||||
"opener:default",
|
||||
"core:window:default",
|
||||
"core:event:default",
|
||||
"deep-link:default",
|
||||
"notification:default",
|
||||
"log:default"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#Tue May 10 19:22:52 CST 2022
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.5-bin.zip
|
||||
distributionPath=wrapper/dists
|
||||
zipStorePath=wrapper/dists
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
|
|
|
|||
|
|
@ -8,12 +8,11 @@ use base64::{
|
|||
engine::general_purpose::{STANDARD, STANDARD_NO_PAD},
|
||||
Engine as _,
|
||||
};
|
||||
use mtp::client::{ClientConfig, MTPClient, MTPConnection};
|
||||
use mtp::client::{ClientConfig, MTPClient, MTPConnection, Policy, SendMode};
|
||||
use mtp::codec::{CommunicationType, CommunicationValue, DataType, DataValue, TypeMap};
|
||||
use mtp::crypto::{
|
||||
derive_encryption_key, AeadDecrypt, ChaCha20Poly1305, HybridKem, Keyring, PublicKeyBundle,
|
||||
};
|
||||
use mtp_transport::{Policy, SendMode};
|
||||
use serde::{Deserialize, Serialize};
|
||||
use serde_json::{Map, Value};
|
||||
use tauri::{AppHandle, Emitter};
|
||||
|
|
|
|||
Loading…
Reference in a new issue