Zenas

Results 2 issues of Zenas

The thread stack size could be critical on mobile devices. Adding the param `thread_stack_size` could be more flexible, especially for building a mobile application. ### Does your PR solve an...

Changes `thread_stack_size` from `usize` to `Option` to address concerns about safety and platform compatibility. Key improvements: - Default to `None`, using Rust std's default stack size (typically 2MB) - Only...