Android dependencie update

This commit is contained in:
2025-12-30 19:18:03 +01:00
parent d4fb4701c3
commit 67bd63dc6b
2 changed files with 7 additions and 10 deletions

View File

@@ -5,12 +5,7 @@ description = "A Tauri App"
authors = ["you"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
# The `_lib` suffix may seem redundant but it is necessary
# to make the lib name unique and wouldn't conflict with the bin name.
# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
name = "marstemedia_lib"
crate-type = ["staticlib", "cdylib", "rlib"]
@@ -24,4 +19,6 @@ serde = { version = "1", features = ["derive"] }
serde_json = "1"
easy-nostr = { path = "./easy-nostr" }
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.12", features = ["json"] }
# FIX: default-features entfernt und rustls-tls hinzugefügt
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }