Christoph Herzog
Christoph Herzog
I had a very quick look at implementing this, but I'm a bit confused. I don't see anything in the code that would handle the SUPER+j/k keys for workspace switching,...
I have a moonshot theory. The culprit may be https://github.com/wasmerio/wasmer/pull/4107/files . My random bet is that we are shutting down the runtime too quickly, not giving the WasiEnv shutdown handler...
@mwilliammyers happy to hear your thoughts. I didn't know about `tracing_log` before, so I'll have to investigate. The reason I'm leaning towards `tracing` is that it is designed for metrics...
ps: happy to work on a PR
I'd still like to keep this open as a feature request because I want the same functionality of merging two separate object definitions into one.
This could be an extension to the `GraphQLObject` custom derive. It would look something like this: ```rust use objects::{ObjectOne, ObjectTwo, ...}; #[derive(juniper::GraphQLObject)] struct CategoryOne { #[juniper(merge)] obj1: ObjectOneQuery, #[juniper(merge)] obj2:...
We definitely want a way to do this, but this is closely correlated with things like general logging and tracing. My preferred solution to this is moving towards a stateful...
The biggest challenge is the maintenance burden of version upgrades of dependencies. We already had that situation with `uuid`. We need a solid strategy for dealing with this, especially when...
Continued in #423 .
This should probably be documented somewhere, but not sure where the best place is.