Eliza Weisman
Eliza Weisman
> * What should be the underlying protocol be, should we consider HTTP2 or quic? vs. named pipes, etc. If Vermilion expects to run only on POSIX-compliant systems, using [Unix...
@stuhood `tracing` does not integrate with the Tokio runtime directly, nor does it use task-local storage. Instead, the [`tracing-futures` crate](https://crates.io/crates/tracing-futures) provides [a future combinator](https://docs.rs/tracing-futures/0.2.0/tracing_futures/trait.Instrument.html) that wraps individual futures so that...
Looks like this needs to be backported to `tracing-subscriber` 0.2; i'll get that taken care of!
Hmm, if we're going to do this, I think the test framework needs a lot of cleanup. At the very least, we should: - [ ] ensure that the panic...
i notice that the `actix-tracing` integration crate that was recently published has basically reproduced its own version of the test support code as well: https://github.com/actix/actix-net/blob/aed5fecc8a0b994cc871483bcf15b3c5fbb350df/actix-tracing/src/lib.rs#L139-L225 so, perhaps that's more evidence...
> Do be aware though that we're considering larger changes to the error types soon: #20 Hmm, if the intent is to make larger changes in the near future, is...
@MOZGIII are you trying to adapt between `tokio` 0.1's `Async{Read, Write}` traits and `tokio` 0.2's? I'd definitely like to add this to `tokio-compat`; thanks for opening the issue. In the...
I opened https://github.com/chanks/valuable/pull/1 to suggest a few potential changes to this PR. @chanks, please take a look and feel free to merge that branch into yours if you like! I...
This is going to be a blocker for fully replacing `tracing`'s value system with `valuable`, so it would be nice to get this one figured out...
Another thought: in addition to having the macros (and possibly a `Pointer::parse("x.y.z")`, as suggested in https://github.com/tokio-rs/valuable/pull/59#issuecomment-873531929), I wonder if it would make sense to have a programmatic builder API for...