Skip to content

Commit

Permalink
⬆️ update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Reverier-Xu committed Dec 9, 2023
1 parent 8909d1c commit 0de8ba4
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
[package]
name = "wsrx-cli"
version = "0.1.10"
version = "0.1.11"
edition = "2021"
authors = ["Reverier-Xu <[email protected]>"]
description = "Controlled TCP-over-WebSocket forwarding tunnel."

[dependencies]
wsrx = { version = "0.1", path = "../lib", default-features = false, features = ["cli"]}
tokio = { version = "1.34", features = ["full"] }
tokio = { version = "1.35", features = ["full"] }
clap = {version = "4.4", features = ["cargo"]}
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio-util = "0.7"
tokio-stream = "0.1"
tokio-tungstenite = { version = "0.20", features = ["rustls-tls-native-roots"] }
tokio-tungstenite = { version = "0.21", features = ["rustls-tls-native-roots"] }
thiserror = "1.0"
anyhow = "1.0"
once_cell = "1.18"
once_cell = "1.19"
url = "2.5"
log = "0.4"
simple_logger = "4.3"
2 changes: 1 addition & 1 deletion desktop/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "desktop",
"private": true,
"version": "0.1.10",
"version": "0.1.11",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
8 changes: 4 additions & 4 deletions desktop/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wsrx-desktop"
version = "0.1.10"
version = "0.1.11"
description = "WSRX Desktop Frontend"
authors = ["Reverier-Xu <[email protected]>"]
edition = "2021"
Expand All @@ -15,13 +15,13 @@ tauri = { version = "1.5", features = ["dialog-all", "fs-all", "protocol-all", "
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
wsrx = { version = "0.1", path = "../../lib", default-features = false, features = ["cli"]}
tokio = { version = "1.34", features = ["full"] }
tokio = { version = "1.35", features = ["full"] }
tokio-util = "0.7"
tokio-stream = "0.1"
tokio-tungstenite = { version = "0.20", features = ["rustls-tls-native-roots"] }
tokio-tungstenite = { version = "0.21", features = ["rustls-tls-native-roots"] }
thiserror = "1.0"
anyhow = "1.0"
once_cell = "1.18"
once_cell = "1.19"
url = "2.5"
log = "0.4"
reqwest = { version = "0.11", features = [
Expand Down
2 changes: 1 addition & 1 deletion desktop/src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"package": {
"productName": "WSRX Desktop",
"version": "0.1.10"
"version": "0.1.11"
},
"tauri": {
"allowlist": {
Expand Down
6 changes: 3 additions & 3 deletions lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wsrx"
version = "0.1.10"
version = "0.1.11"
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.34", features = ["full"] }
tokio = { version = "1.35", features = ["full"] }
axum = { version = "0.7", features = [
"ws",
"http2",
Expand All @@ -28,7 +28,7 @@ anyhow = "1.0"
toml = "0.8"
uuid = "1.6"
base64 = "0.21"
tokio-tungstenite = { version = "0.20", features = ["rustls-tls-native-roots"], optional = true }
tokio-tungstenite = { version = "0.21", features = ["rustls-tls-native-roots"], optional = true }
tracing = "0.1"
futures-util = "0.3"

Expand Down

0 comments on commit 0de8ba4

Please sign in to comment.