jaskij

Results 173 comments of jaskij

Isn't the current meta-rust at 1.75 though? I have started work on updating to latest possible dependencies, and it does seem to work, although the MSRV is 1.75. Wasn't able...

For me this is a blocker to using Typer in any real capacity.

Looking around, [D2 supports containers](https://d2lang.com/tour/containers), even when using Dagre as the layout engine. Maybe check out how they are doing that?

Thanks @jcar87 , I'll copy the info from my Reddit comment here, in several comments so it's easier to refer to.

First is the ISA. Instruction Set Architecture. The way it is usually done in x86-64 is to have on binary made for the lowest common denominator, usually just x86-64, and...

Next are the non-ISA flags, these are much more static. This is the contents of my common flags variable, and except the last two ones it's stuff I think most...

For compilation flags, the last thing is optimization. On x86-64 you may expect to basically just ship either `-Og` or `-O2` and call it a day. It's much more varied...

People will also want to be able to select the compiler itself. It does matter, I have had to work around bugs in ARM's official toolchain myself.

There's also the thing with configuring libraries. Libraries using configuration headers are covered in the discussion in: https://github.com/conan-io/conan/issues/6646 As another example, here's the set of configuration options I'm using with...