Upgrade rust crates

This commit is contained in:
Travis Burtrum 2023-12-07 22:14:06 -05:00
parent 8aa4c96e53
commit 587c9b8f55
Signed by: moparisthebest
GPG Key ID: 88C93BFE27BC8229
3 changed files with 2054 additions and 928 deletions

View File

@ -6,7 +6,7 @@ server through [xmpp-proxy](https://github.com/moparisthebest/xmpp-proxy).
It's the first known client to support [QUIC](https://xmpp.org/extensions/xep-0467.html).
To build install Tauri `cargo install create-tauri-app`, then run `cargo tauri build`.
To build install Tauri `cargo install --locked tauri-cli`, then run `cargo tauri build`.
If you want to download binaries head over to [Releases](https://github.com/conversejs/converse-tauri/releases).

2976
src-tauri/Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -17,10 +17,10 @@ tauri-build = { version = "1.1", features = [] }
[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
tauri = { version = "1.1", features = ["api-all", "devtools", "system-tray"] }
tauri = { version = "1.5", features = ["api-all", "devtools", "system-tray"] }
once_cell = "1"
tokio = { version = "1.9", features = ["net"] }
tokio = { version = "1.34", features = ["net"] }
xmpp-proxy = { git = "https://github.com/moparisthebest/xmpp-proxy", default-features = false, features = ["c2s-outgoing", "tls", "quic", "websocket", "tls-ca-roots-bundled"] }
[features]