cut the runtime standard library into its own crate #58
Labels
No labels
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
wontfix
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set
Reference
ArkForgeLabs/Astra#58
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
If the runtime's components and the standard library gets cut into its own crate and published outside, it allows for anyone else having similar projects to easily integrate them and use them in their own works.
The components or libraries used can be set behind feature flags for customization, and enabled all by default for the runtime itself.
Another design decision that needs to be considered is to not directly add the defined functions into the Lua, and rather return them and have functionality to let the user add the components themselves. Another possibility for the sake of simplicity can be keeping the ability to add them all in a single function, with a prefix of choice.