Skip to content

Commit 144a9fc

Browse files
committed
⬆️ update dependencies
1 parent eb2993e commit 144a9fc

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ homepage = "https://github.com/XDSEC/WebSocketReflectorX"
99
license = "MIT"
1010
repository = "https://github.com/XDSEC/WebSocketReflectorX"
1111
rust-version = "1.89.0"
12-
version = "0.5.14"
12+
version = "0.5.15"
1313

1414
[profile.release]
1515
codegen-units = 1
@@ -51,12 +51,11 @@ async-compat = { version = "0.2" }
5151
i-slint-backend-winit = "1.14"
5252
open = "5.3"
5353

54-
reqwest = { version = "0.12", default-features = false, features = [
54+
reqwest = { version = "0.13", features = [
5555
"blocking",
5656
"charset",
5757
"http2",
5858
"json",
59-
"rustls-tls",
6059
] }
6160

6261
slint = { version = "1.14", default-features = false, features = [

crates/wsrx/src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
use std::process;
22

3-
use clap::{Parser, command};
3+
use clap::Parser;
44
use rustls::crypto;
55
use tracing::{error, info, warn};
66

77
#[cfg(feature = "client")]
88
mod cli;
99

10-
/// wsrx is a controlled WS-TCP tunnel for Ret2Shell platform.
10+
/// wsrx is a controlled WS-TCP tunnel for CTF platforms like ret2shell, GZCTF and CDSCTF etc..
1111
#[derive(Parser)]
1212
#[command(name = "wsrx", bin_name = "wsrx", version, about)]
1313
enum WsrxCli {

windows/setup.nsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Unicode True
1111
!define DESCRIPTION "Controlled TCP-over-WebSocket forwarding tunnel."
1212
!define VERSIONMAJOR 0
1313
!define VERSIONMINOR 5
14-
!define VERSIONBUILD 14
14+
!define VERSIONBUILD 15
1515
!define INSTALL_DIR_DEFAULT "$PROGRAMFILES64\${APPNAME}"
1616
!define MUI_ABORTWARNING
1717
!define MUI_FINISHPAGE_RUN

0 commit comments

Comments
 (0)