Skip to content

Commit

Permalink
⬆️ update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Reverier-Xu committed Sep 15, 2024
1 parent 5f9c4b0 commit 7fe959e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.20)

set(VERSION_MAJOR 0)
set(VERSION_MINOR 2)
set(VERSION_PATCH 24)
set(VERSION_PATCH 25)

execute_process(
COMMAND git describe --always --dirty
Expand Down
2 changes: 1 addition & 1 deletion deploy_linux.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash

export APP_NAME="WebSocketReflectorX"
export APP_VERSION=0.2.24
export APP_VERSION=0.2.25
export GIT_VERSION=$(git rev-parse --short HEAD)

echo "> $APP_NAME packager (Linux x86_64) [v$APP_VERSION]"
Expand Down
2 changes: 1 addition & 1 deletion deploy_macos.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash

export APP_NAME="WebSocketReflectorX"
export APP_VERSION=0.2.24
export APP_VERSION=0.2.25
export GIT_VERSION=$(git rev-parse --short HEAD)

echo "> $APP_NAME packager (macOS x86_64) [v$APP_VERSION]"
Expand Down
2 changes: 1 addition & 1 deletion deploy_windows.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash

export APP_NAME="WebSocketReflectorX"
export APP_VERSION=0.2.24
export APP_VERSION=0.2.25
export GIT_VERSION=$(git rev-parse --short HEAD)

echo "> $APP_NAME packager (Windows x86_64) [v$APP_VERSION]"
Expand Down
6 changes: 3 additions & 3 deletions wsrx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wsrx"
version = "0.2.24"
version = "0.2.25"
edition = "2021"
authors = ["Reverier-Xu <reverier.xu@xdsec.club>"]
description = "Controlled TCP-over-WebSocket forwarding tunnel."
Expand Down Expand Up @@ -44,13 +44,13 @@ thiserror = "1.0"

# optional
axum = { version = "0.7", features = ["ws", "macros"], optional = true }
tokio-tungstenite = { version = "0.23", features = [
tokio-tungstenite = { version = "0.24", features = [
"rustls-tls-native-roots",
], optional = true }

# binary cli only
clap = { version = "4.5", features = ["derive"], optional = true }
once_cell = { version = "1.19", optional = true }
once_cell = { version = "1.20", optional = true }
tracing = { version = "0.1", optional = true }
tracing-subscriber = { version = "0.3", features = [
"env-filter",
Expand Down

0 comments on commit 7fe959e

Please sign in to comment.