-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add 3 new syscalls: spawn, get_memory_limit and set_content #39
Conversation
Please use #[cfg(features = "ckb2023")]
pub use ckb2023::*;
mod ckb2023 {
pub fn spawn() { .. }
} |
If we use (non-default) features, we should use
so that docs.rs will have docs for them. |
And there's the |
doc_auto_cfg may not be used on the stable release channel |
Docs.rs uses nightly. I'll submit a PR for this. |
Note: