sbant
sbant
I have run your test, but can‘t connect... cargo run --features ssl --example cli wss://wss.websocketstest.com/service Compiling ws v0.5.0 (file:///C:/Users/sbant/Downloads/ws-rs-stable/ws-rs-stable) Running `target\debug\examples\cli.exe wss://wss.websocketstest.com/service` Connecting to wss://wss.websocketstest.com/service I'm use windows with openssl....
I use precompiled openssl from here http://www.npcglib.org/~stathis/blog/precompiled-openssl/ (p.s http://slproweb.com/products/Win32OpenSSL.html can also work ok, but only compiled with vs2013) Copy libeay32MD.dll ssleay32MD.dll to the program folder and copy each file again...
sorry, I found may be some problem in RustDT. In command line,with "cargo build", both gnu and msvc cargo can build the project without problem. But in RustDT, looks like...
Another question, Both file_logger and terminal_logger contains one Async, thus opened two threads. Can we avoid that, something like only create one root Async(thread) for all child Drains.
I tried edit "dioxus/blob/main/packages/cli/src/build/request.rs" comment line 571 ` _ = remove_dir_all(self.exe_dir()); ` to ` //_ = remove_dir_all(self.exe_dir()); ` I'm not sure this is the right approach, but this make my...
I think use `build.rs`, copy DLLs and config files everytime before rebuild is not a good solution. The program config maybe changed during running and save to files, as current...