-
Hi! This looks like a nice a project! Is rune well-suited for embedded system with constrained memory (64 Ko or less)? Basically what is the minium amount of RAM that is required? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hey, thank you! The compiler doesn't exclusively use the internal alloc crate (yet), so unsure about resource requirements there. But generally the larger more complex the program, the higher the resource requirements. At runtime these should be very low, so if you can compile somewhere else and ship the bytecode (a Float support can't be disabled, but a PR for that is welcome.
|
Beta Was this translation helpful? Give feedback.
Hey, thank you!
The compiler doesn't exclusively use the internal alloc crate (yet), so unsure about resource requirements there. But generally the larger more complex the program, the higher the resource requirements. At runtime these should be very low, so if you can compile somewhere else and ship the bytecode (a
Unit
implementsserde
) you should be able run it in a very resource constrained environment. However, this has not been tested so I don't know to what extent.Float support can't be disabled, but a PR for that is welcome.
no-std
is supported but some features might not be available.