Android dependencie update
This commit is contained in:
@@ -3,20 +3,20 @@ name = "marstemedia-ui"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
[dependencies]
|
||||
yew = { version = "0.21", features = ["csr"] }
|
||||
yew-router = "0.18"
|
||||
wasm-bindgen = "0.2"
|
||||
wasm-bindgen-futures = "0.4"
|
||||
web-sys = { version = "0.3", features = ["Window", "ScrollToOptions", "ScrollBehavior"] }
|
||||
web-sys = { version = "0.3", features = ["Window", "ScrollToOptions", "ScrollBehavior", "HtmlInputElement", "MouseEvent"] }
|
||||
js-sys = "0.3"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde-wasm-bindgen = "0.6"
|
||||
console_error_panic_hook = "0.1.7"
|
||||
serde_json = "1.0.148"
|
||||
serde_json = "1.0"
|
||||
gloo-timers = "0.3.0"
|
||||
reqwest = { version = "0.13.0", features = ["json"] }
|
||||
# Umgestellt auf rustls, um OpenSSL-Fehler beim Cross-Compiling zu vermeiden
|
||||
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
|
||||
pulldown-cmark = "0.13.0"
|
||||
|
||||
[workspace]
|
||||
|
||||
@@ -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"] }
|
||||
|
||||
Reference in New Issue
Block a user