Tamás Szelei
Tamás Szelei
I think this is because `member_function_t` is not treated as a container in `detail::visit`, and simply the callback is called instead of recursive visitation. I'd assume standardese would need to...
I'm able to cross compile ring from Linux to `x86_64-apple-darwin` by using the osxcross toolchain. I set the following in .config/cargo.toml: ```toml [target.x86_64-apple-darwin] linker = "x86_64-apple-darwin21.1-clang" ar = "x86_64-apple-darwin21.1-ar" [target.aarch64-apple-darwin]...
I was looking for a libmpv wrapper that can render to a opengl frame buffer. I found mpv-rs that has a SDL2 example that does just that. This project appears...
I tried a server implementations like this: ``` python import msgpackrpc class TestServer(object): def Add(self, a, b): print("Add({}, {}) called".format(a, b)) return a + b def Mul(self, a, b): print("Mul({},...
**Is your feature request related to a problem? Please describe.** I looked at the what this fork does currently and I saw that the three significant changes were removing Sentry...
Hey everyone, Apologies for the lack of updates, I really wanted to continue this project but it turns out I couldn't. I reached out on [reddit](https://www.reddit.com/r/cpp/comments/mxgxxx/rpclib_is_looking_for_a_new_maintainer/) to see if there...
Transport and encoding should be handled separately. Thrift is a good example, but might be a bit too much. Ideally this should allow adding e.g. a json-rpc backend as well.
Currently it's only possible to set the number of worker threads when starting the server and then it is set in stone. This PR concerns two features (might need to...
So I've been quietly juggling #152 and failing to resolve a linker error after renaming the namespaces. Since #135 seems fairly popular, I'm more and more inclined to not ship...
- [ ] Builds should build with (linux, osx) x (gcc, clang) matrix (see #77) - [ ] Builds should build the documentation - [ ] Builds on master should...