changed from openssl to rustls in sqlx dependencies
This commit is contained in:
parent
75d172fc3f
commit
563724b7ae
4 changed files with 845 additions and 573 deletions
2
dev.sh
2
dev.sh
|
|
@ -1,2 +1,2 @@
|
||||||
export ANDROID_HOME=$HOME/Android
|
export ANDROID_HOME=$HOME/Android
|
||||||
export NDK_HOME=$HOME/Android/Sdk/ndk/28.0.12433566/
|
export NDK_HOME=$HOME/Android/Sdk/ndk/28.0.13004108
|
||||||
|
|
|
||||||
1412
src-tauri/Cargo.lock
generated
1412
src-tauri/Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
|
@ -28,4 +28,4 @@ tauri-plugin-log = "2"
|
||||||
shellexpand = "3.1.0"
|
shellexpand = "3.1.0"
|
||||||
html_tag = "0.1.3"
|
html_tag = "0.1.3"
|
||||||
fuzzy-matcher = "0.3"
|
fuzzy-matcher = "0.3"
|
||||||
sqlx = { version = "0.6.2", features = ["runtime-tokio-native-tls", "sqlite"] }
|
sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "sqlite"] }
|
||||||
|
|
|
||||||
2
src-tauri/src/saving.rs
Normal file
2
src-tauri/src/saving.rs
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
#[tauri::command]
|
||||||
|
pub async fn save(path: String, content: String) {}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue