Skip to content

Commit

Permalink
⬆️ update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Reverier-Xu committed Oct 9, 2023
1 parent 42cb010 commit 7cb3da8
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 10 deletions.
4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ description = "Controlled TCP-over-WebSocket forwarding tunnel."

[dependencies]
wsrx = { version = "*", path = "../lib" }
tokio = { version = "1.31", features = ["full"] }
clap = {version = "4.3", features = ["cargo"]}
tokio = { version = "1.32", features = ["full"] }
clap = {version = "4.4", features = ["cargo"]}
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio-util = "0.7"
Expand Down
13 changes: 9 additions & 4 deletions desktop/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[build-dependencies]
tauri-build = { version = "1.4", features = [] }
tauri-build = { version = "1.5", features = [] }

[dependencies]
tauri = { version = "1.4", features = ["dialog-all", "fs-all", "protocol-all", "shell-open", "window-close", "window-hide", "window-maximize", "window-minimize", "window-show", "window-start-dragging", "window-unmaximize", "window-unminimize"] }
tauri = { version = "1.5", features = ["dialog-all", "fs-all", "protocol-all", "shell-open", "window-close", "window-hide", "window-maximize", "window-minimize", "window-show", "window-start-dragging", "window-unmaximize", "window-unminimize"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
wsrx = { version = "0.1", path = "../../lib" }
tokio = { version = "1.31", features = ["full"] }
tokio = { version = "1.32", features = ["full"] }
tokio-util = "0.7"
tokio-stream = "0.1"
tokio-tungstenite = { version = "0.20", features = ["rustls-tls-native-roots"] }
Expand All @@ -24,7 +24,12 @@ anyhow = "1.0"
once_cell = "1.18"
url = "2.4"
log = "0.4"
reqwest = "0.11"
reqwest = { version = "0.11", features = [
"rustls-tls",
"cookies",
"gzip",
"json",
], default-features = false }

[features]
# this feature is used for production builds or when `devPath` points to the filesystem
Expand Down
8 changes: 4 additions & 4 deletions lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wsrx"
version = "0.1.5"
version = "0.1.6"
edition = "2021"
authors = ["Reverier-Xu <[email protected]>"]
description = "Controlled TCP-over-WebSocket forwarding tunnel."
Expand All @@ -11,7 +11,7 @@ readme = "README.md"
license = "MPL-2.0"

[dependencies]
tokio = { version = "1.31", features = ["full"] }
tokio = { version = "1.32", features = ["full"] }
axum = { version = "0.6", features = [
"headers",
"ws",
Expand All @@ -21,12 +21,12 @@ axum = { version = "0.6", features = [
] }
tokio-util = "0.7"
tokio-stream = "0.1"
bytes = "1.4"
bytes = "1.5"
serde = { version = "1.0", features = ["derive"] }
chrono = { version = "0.4", features = ["serde"] }
thiserror = "1.0"
anyhow = "1.0"
toml = "0.7"
toml = "0.8"
uuid = "1.4"
base64 = "0.21"
tokio-tungstenite = { version = "0.20", features = ["rustls-tls-native-roots"] }
Expand Down

0 comments on commit 7cb3da8

Please sign in to comment.