All checks were successful
Android Universal Build / build-android (push) Successful in 12m9s
Keys are saved to keys.json in the app's private data directory on both Linux and Android. load_keys is called on app mount to restore them into NewsState before the first news fetch. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
29 lines
723 B
TOML
29 lines
723 B
TOML
[package]
|
|
name = "marstemedia"
|
|
version = "0.5.0"
|
|
description = "A Tauri App"
|
|
authors = ["you"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "marstemedia_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = [] }
|
|
tauri-plugin-opener = "2"
|
|
tauri-plugin-store = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
easy-nostr = { path = "./easy-nostr" }
|
|
tokio = { version = "1", features = ["full"] }
|
|
feed-rs = "2.3.1"
|
|
ron = "0.8"
|
|
nostr-sdk = "0.44.1"
|
|
|
|
# FIX: default-features entfernt und rustls-tls hinzugefügt
|
|
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
|