Skip to content

Commit

Permalink
⬆️ bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Reverier-Xu committed Oct 17, 2023
1 parent 312801f commit e9f26d6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[workspace]
members = ["cli", "lib", "desktop/src-tauri"]
default-members = ["cli", "lib", "desktop/src-tauri"]
resolver = "2"
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description = "Controlled TCP-over-WebSocket forwarding tunnel."

[dependencies]
wsrx = { version = "*", path = "../lib" }
tokio = { version = "1.32", features = ["full"] }
tokio = { version = "1.33", features = ["full"] }
clap = {version = "4.4", features = ["cargo"]}
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion desktop/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ 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" }
tokio = { version = "1.32", features = ["full"] }
tokio = { version = "1.33", features = ["full"] }
tokio-util = "0.7"
tokio-stream = "0.1"
tokio-tungstenite = { version = "0.20", features = ["rustls-tls-native-roots"] }
Expand Down
2 changes: 1 addition & 1 deletion desktop/src-tauri/src/connection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ pub async fn add_ws_connection(
level: "info".to_owned(),
message: format!(
"New connection established: {}",
tcp.peer_addr().unwrap().to_string()
tcp.peer_addr().unwrap()
),
addr: addr.clone(),
});
Expand Down
2 changes: 1 addition & 1 deletion lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ readme = "README.md"
license = "MPL-2.0"

[dependencies]
tokio = { version = "1.32", features = ["full"] }
tokio = { version = "1.33", features = ["full"] }
axum = { version = "0.6", features = [
"headers",
"ws",
Expand Down

0 comments on commit e9f26d6

Please sign in to comment.