2 个不稳定版本
0.3.0 | 2020 年 9 月 2 日 |
---|---|
0.2.2 | 2020 年 8 月 7 日 |
#26 in #rune
685KB
16K SLoC
runestick-time
runestick 时间包。
使用方法
将以下内容添加到您的 Cargo.toml
runestick = "0.2"
runestick-time = "0.2"
将其安装到您的环境中
let mut context = runestick::Context::with_default_packages()?;
context.install(runestick_time::module()?)?;
在 Rune 中使用它
use time;
fn main() {
time::delay_for(time::Duration::from_secs(10)).await;
}
lib.rs
:
runestick 时间包。
使用方法
将以下内容添加到您的 Cargo.toml
runestick = "0.2"
runestick-time = "0.2"
将其安装到您的环境中
let mut context = runestick::Context::with_default_packages()?;
context.install(&runestick_time::module()?)?;
在 Rune 中使用它
use time;
fn main() {
time::delay_for(time::Duration::from_secs(10)).await;
}
依赖项
~6.5MB
~108K SLoC