mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-04-24 01:28:35 +02:00
Websocket Support (#159)
This commit is contained in:
26
src-tauri/yaak-ws/Cargo.toml
Normal file
26
src-tauri/yaak-ws/Cargo.toml
Normal file
@@ -0,0 +1,26 @@
|
||||
[package]
|
||||
name = "yaak-ws"
|
||||
links = "yaak-ws"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
publish = false
|
||||
|
||||
[dependencies]
|
||||
futures-util = "0.3.31"
|
||||
log = "0.4.20"
|
||||
md5 = "0.7.0"
|
||||
rustls = { version = "0.23.21", default-features = false, features = ["custom-provider", "ring"] }
|
||||
rustls-platform-verifier = "0.5.0"
|
||||
serde = { version = "1.0.217", features = ["derive"] }
|
||||
tauri = { workspace = true }
|
||||
thiserror = "2.0.11"
|
||||
tokio = { version = "1.0", default-features = false, features = ["macros", "time", "test-util"] }
|
||||
tokio-tungstenite = { version = "0.26.1", default-features = false, features = ["rustls-tls-native-roots", "connect"] }
|
||||
yaak-models = { workspace = true }
|
||||
yaak-plugins = { workspace = true }
|
||||
yaak-templates = { workspace = true }
|
||||
serde_json = "1.0.132"
|
||||
chrono = "0.4.38"
|
||||
|
||||
[build-dependencies]
|
||||
tauri-plugin = { workspace = true, features = ["build"] }
|
||||
Reference in New Issue
Block a user