tokay-lang / tokay

Tokay is a programming language designed for ad-hoc parsing, inspired by awk.
https://tokay.dev
MIT License
236 stars 7 forks source link

Remove build-dependency on `tokay = "0.4"` for `build.rs` #110

Closed phorward closed 11 months ago

phorward commented 1 year ago

Regarding #106, I think it's better to not have older Tokay versions being a build-dependency for Tokay itself, although it is useful to use Tokay features in the tools to build Tokay.

This might probably result in a manual process for build.rs like with the gen_parser/Makefile, but this would remove the dependency and Tokay can still be used to parse and generate the contents of _builtins.rs.

Nevertheless, I'm open for any further suggestions to keep the current build process.

phorward commented 1 year ago

112 is an approach to solve this issue.

phorward commented 11 months ago

Fixed by #112