File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed
Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ homepage = "https://github.com/XDSEC/WebSocketReflectorX"
99license = " MIT"
1010repository = " https://github.com/XDSEC/WebSocketReflectorX"
1111rust-version = " 1.88.0"
12- version = " 0.5.7 "
12+ version = " 0.5.8 "
1313
1414[profile .release ]
1515codegen-units = 1
Original file line number Diff line number Diff line change @@ -28,7 +28,9 @@ fn main() {
2828 "{version}-{}-{}-{}" ,
2929 build_target:: target_arch( ) ,
3030 build_target:: target_os( ) ,
31- build_target:: target_env( ) . unwrap( ) ,
31+ build_target:: target_env( )
32+ . map( |v| v. as_str( ) . to_string( ) )
33+ . unwrap_or( "general" . to_string( ) ) ,
3234 ) ;
3335 fs:: write (
3436 dest_path,
Original file line number Diff line number Diff line change 2828 " LICENSE"
2929 ],
3030 "dependencies" : {
31- "ky" : " ^1.8.1 " ,
31+ "ky" : " ^1.8.2 " ,
3232 "nanoid" : " ^5.1.5"
3333 },
3434 "devDependencies" : {
35- "@types/node" : " ^22.15.14 " ,
35+ "@types/node" : " ^24.1.0 " ,
3636 "typescript" : " ^5.8.3"
3737 }
3838}
You can’t perform that action at this time.
0 commit comments