Felix Queißner
Felix Queißner
I have no idea how that would fit the language *at all*. LoLa doesn't need "includes" in a classical sense, you can just do a `Include("file.lola");` function if you desire...
You are aware that LoLa already has a parser and you'd have to integrate another parser into this one, whereas a "self-rolled" parser would be a work of half an...
Not sure if a `module` field is enough. That has to be actively maintained and i honestly don't have the time to periodically check each project listed here if they...
I think this proposal would hurt the Zig ecosystem more than it would help it, due to several reasons: - Adoption of compilers and languages in the embedded is basically...
Having a `TlsInitializationFailed` with `https://git.random-projects.net/DerTeufel/fraxinus/archive/88fac1ffc627ce5b4e69b0897df93cbb4be5de09.tar.gz` (or any other url on my domains)
> `git.random-projects.net` doesn't support TLS 1.3, which is the only version zig has support for at the moment. Thanks for clarification. I have to figure out how to enable TLS...
With that structure, how can i add a file that i can import with `@embedFile`? With the previous system, i added the binary file as a module and could just...
> In my opinion having access to build.zig-s of dependencies via @import, and modeling whatever logic you need in userland, is a very flexible and valuable feature. Except you cannot...
Some more elaboration: The follow use case isn't possible with the proposed solution of "just using `@import`": ## Library Code #### `build.zig` ```zig const MicroZig = @import("microzig-build"); pub fn build(b:...
That's indeed an interesting solution. I didn't know about `dependencyFromBuildZig` and that might actually solve the problem okayish. I still think it's a hack and the passing of custom types...