mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-06-06 13:53:54 +02:00
publish new versions (#1142)
Co-authored-by: FabianLars <FabianLars@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
37dbd4c38d
commit
9f545c65ad
@@ -1,5 +1,9 @@
|
||||
# Changelog
|
||||
|
||||
## \[2.0.0-beta.4]
|
||||
|
||||
- [`ed46dca`](https://github.com/tauri-apps/plugins-workspace/commit/ed46dca74ff3947dbbcb26a7b571c129bf925698) **Breaking change:** Enable rustls by default and added a method to configure the TLS Connector for tungstenite.
|
||||
|
||||
## \[2.0.0-beta.3]
|
||||
|
||||
- [`a04ea2f`](https://github.com/tauri-apps/plugins-workspace/commit/a04ea2f38294d5a3987578283badc8eec87a7752)([#1071](https://github.com/tauri-apps/plugins-workspace/pull/1071)) The global API script is now only added to the binary when the `withGlobalTauri` config is true.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "tauri-plugin-websocket"
|
||||
version = "2.0.0-beta.3"
|
||||
version = "2.0.0-beta.4"
|
||||
description = "Expose a WebSocket server to your Tauri frontend."
|
||||
authors = { workspace = true }
|
||||
license = { workspace = true }
|
||||
@@ -8,14 +8,14 @@ edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
repository = { workspace = true }
|
||||
links = "tauri-plugin-websocket"
|
||||
exclude = ["/examples"]
|
||||
exclude = [ "/examples" ]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
rustc-args = ["--cfg", "docsrs"]
|
||||
rustdoc-args = ["--cfg", "docsrs"]
|
||||
rustc-args = [ "--cfg", "docsrs" ]
|
||||
rustdoc-args = [ "--cfg", "docsrs" ]
|
||||
|
||||
[build-dependencies]
|
||||
tauri-plugin = { workspace = true, features = ["build"] }
|
||||
tauri-plugin = { workspace = true, features = [ "build" ] }
|
||||
|
||||
[dependencies]
|
||||
serde = { workspace = true }
|
||||
@@ -26,12 +26,12 @@ thiserror = { workspace = true }
|
||||
http = "1"
|
||||
rand = "0.8"
|
||||
futures-util = "0.3"
|
||||
tokio = { version = "1", features = ["net", "sync"] }
|
||||
tokio = { version = "1", features = [ "net", "sync" ] }
|
||||
tokio-tungstenite = { version = "0.21" }
|
||||
|
||||
[features]
|
||||
default = ["rustls-tls"]
|
||||
native-tls = ["tokio-tungstenite/native-tls"]
|
||||
native-tls-vendored = ["native-tls", "tokio-tungstenite/native-tls-vendored"]
|
||||
rustls-tls = ["tokio-tungstenite/rustls-tls-webpki-roots"]
|
||||
rustls-tls-native-roots = ["tokio-tungstenite/rustls-tls-native-roots"]
|
||||
default = [ "rustls-tls" ]
|
||||
native-tls = [ "tokio-tungstenite/native-tls" ]
|
||||
native-tls-vendored = [ "native-tls", "tokio-tungstenite/native-tls-vendored" ]
|
||||
rustls-tls = [ "tokio-tungstenite/rustls-tls-webpki-roots" ]
|
||||
rustls-tls-native-roots = [ "tokio-tungstenite/rustls-tls-native-roots" ]
|
||||
|
||||
Reference in New Issue
Block a user