Richard Chien
Richard Chien
I have the same problem, too. `mt_textCursorTint` does not change the color, and it's alway white.
Since [anna-rs](https://github.com/essa-project/anna-rs), the new Anna KVS written in Rust, was made public a few days ago, the specification of this task should be adjusted. After some investigation, I found that...
After some digging, I found it possible to get rid of Zenoh in anna-rs's client code, so that it can talk to routing nodes and kvs nodes through vanilla TCP...
> Perhaps we can create a prototype example using `wasmedge_http_req` first. We can switch the async Tokio MIO-like API once #1532 is ready? Do you mean using `wasmedge_wasi_socket`? The anna-rs...
Now [anna-client-tokio](https://github.com/richardchien/anna-client-tokio) uses Tokio instead of smol. It currently only works on my host system (macOS), still has some issues when running on WasmEdge. The next step is to do...
> Is the README for the anna-client-tokio project accurate? Thanks. No it's the original readme of anna-rs, I will rewrite it later.
> Got it. Does you client support all anna operations (GET, PUT, PUT-SET) right now? Yes, it has all functionalities the original Anna client has.
After some debugging, I decided to rewrite the TCP sending and receiving logic of Anna Rust client instead of directly running the original client on WasmEdge, because the `futures::select!`, `FusedStream`,...
> Thanks Richard. Does that mean that there is now a separate repo and crate for "WasmEdge Anna client"? Can you point us to it? Thanks. It's still in [anna-client-tokio](https://github.com/richardchien/anna-client-tokio)....
> I saw that it still uses regular tokio not the WasmEdge fork of tokio. Can it run inside WasmEdge now? Oh there're some changes in my local repo that...