fMeow
fMeow
Yes, indeed. Though I might not be active in developing new features. Thanks to the AQL in arango, it's enough for our use case. And any PR is welcomed.
This is indeed posiible. However the async fn in trait RFC is still in early development and not stablized yet, so I think it more appropriate to add a feature...
Working on this.
I released `0.2.9` which add async fn in traits support. For compatibilty reason, a `AFIT` flag is used to indicate a native async fn in traits. So the api is...
Close as solved in `0.2.9`.
I think it fine. And I am open to an PR for this too. But in my opinion, a better solution might be providing both async and sync methods for...
I think it fine to just dump the `maybe_async::test` attribute macro, since it is just a alias for a set of `cfg_attr`. We just need to clearly state how to...
Both `README.md`, `CHANGELOG.md` and docs in rust code so that we can see it in `docs.rs`.
The PR #23 fully tackle the `test` macro problem. I will close this PR.
It's indeed possible. I often combine ripgrep and csvlens like the following: ```sh $ rg (header|value) my.csv | csvlens ```