Luis

Results 47 comments of Luis

@LukeMathWalker The feature is [stabilized](https://doc.rust-lang.org/nightly/cargo/reference/unstable.html#workspace-inheritance-1) and it's already on current beta (1.64) [documentation](https://doc.rust-lang.org/beta/cargo/reference/workspaces.html#the-workspacedependencies-table). Note there are two ways to use it: `cc.workspace = true` and `regex = { workspace =...

I can confirm it is working now as expected! Thanks 😀 I've only tried this style: `regex = { workspace = true, features = ["unicode"] }`, so I can't confirm...

There is already an `OpaqueCursor` impl in the library, so it should have pub T or at least a constructor so it can be useful... otherwise we can't use them...

I've just made a fully portable alternative written in Rust, no dependencies required. https://github.com/lasantosr/intelli-shell

I've created a new tool with similar functionality that works on fish, it's standalone and doesn't have dependencies (like python) https://github.com/lasantosr/intelli-shell It's pretty new so feel free to open issues...

or https://github.com/lasantosr/intelli-shell disclaimer: i'm the author

You're right @billy1624, I missed that point, I think its enough for `SelectTwo`. In the case of `SelectTwoMany` I guess we will have to paginate the main entity and then,...

Hey @jneidel, what's needed to merge the PR?

Same thing just happened to me. It seems that the result must be named `Result` as it might be hardcoded somewhere, so `GqlResult` is not valid. When using the right...

I work within WSL so my cache is located under `~/.vscode-server/data/User/globalStorage/tamasfe.even-better-toml/` It's cached for 10 minutes according to [source](https://github.com/tamasfe/taplo/blob/73494e610153c21e5d92ed271e7de00d1c108036/crates/taplo-common/src/schema/cache.rs#L14), but I agree on detecting expiry with some kind of hash...