Rune Tynan

Results 132 comments of Rune Tynan

A couple of question: What version of Tectonic are you using? What exact command are you using? Can you provide an example document that reproduces the issue for you?

It parses '(a pattern, separated by another), any number of times', not 'a pattern, seperated by (another, any number of times)'. This is supposed to be implied by the commas,...

How do you want to handle the MSRV stuff? It's test only, I can skip the upgrade for now if you'd like.

Would love to see this implemented, as it's the biggest papercut for exploring/developing on the rustc project that I've run into.

My workaround has been to use target dependencies for an invalid target, which ensures those dependencies aren't actually activated by cargo. So same as above, but with `[target.'cfg(target_os = "intellij-hack")'.dependencies]`...

That first part sounds very annoying, as a user - I often manually override Default just to change one or two fields, but now I have to add `= 0`...

I'm unsure how one continues to write safe abstractions with such a proposed change to `Send`. Aside from the mentioned `pthread` issues, `WaitForDebugEventEx` is an example of a Windows API...

I'll fix conflict when I have a moment. Sorry for not updating yet - doing real life stuff over the weekend.

Another issue opened due to this: #1225

It sounds like you're looking for [MemoryIo](https://docs.rs/tectonic/latest/tectonic/io/memory/struct.MemoryIo.html) - you should be able to run Tectonic entirely in-memory by using `MemoryIo` as your primary `IoProvider` in your `DriverHooks`. If this _doesn't_...