kLiHz

Results 33 comments of kLiHz

I tested the 0.7.0 windows executable on my Winows 11 Pro 22H2 (22621.1555), also x64, and it works fine (I only tested symmetric key commands which are `init`, `export-key FILE`...

Well, I've visited the repo indicated by @h1542462994 and it seems like that repo was inspired by this MarkdownX, as said in the [project README](https://github.com/qinci/MarkdownEditors/blob/master/README.md#markdowneditors). So, in my opinion, the...

I think it would be nice to add some notice to the repo's README, like referring to this announcement or marking the repository as deprecated [too](https://plugins.jetbrains.com/plugin/8182--deprecated-rust). And it looks like...

Yes, it could be. The `reqwest` crate reads system proxy settings from environment variables by default (see ). However, currently the Rust plugin is not passing proxy-related environment variables correctly...

May I know the proxy type you are using? From issue #1021, it seems that the HTTP proxy fetching is brought to the plugin by corresponding PR #1668. But I...

The JetBrians team has just released [RustRover](https://www.jetbrains.com/rust/). Currently it's in preview. But as stated in the blog [Introducing RustRover – A Standalone Rust IDE by JetBrains](https://blog.jetbrains.com/rust/2023/09/13/introducing-rustrover-a-standalone-rust-ide-by-jetbrains/), it looks like they...

Looks like Rust has support for ARMv5TE. Guess you can refer to some cross-compiling practices and see if things works.

You can try: 1. Install C compilers and Rust stable toolchains via [`rustup`](https://rustup.rs); 2. Say you'd like the target triple `armv5te-unknown-linux-musleabi`, then also save it in a variable for convenience...

From the log, the build failed at the linking process and the linker used is `/usr/bin/ld`, which is probably the system linker. And the message suggests that the object file's...

Hi @jkscx, looks like a working PR #23330 is dealing with this issue. I think it's making `append: false` truncating too for `ReadableStream`. If my understandings are correct, the result...