2个版本
0.2.1 | 2020年8月6日 |
---|---|
0.2.0 | 2020年8月6日 |
#1832 in 编码
用于 stk-http
230KB
5.5K SLoC
stk-json
json包,提供访问序列化和反序列化JSON的函数。
用法
将以下内容添加到您的 Cargo.toml
stk = "0.2"
stk-json = "0.2"
将其安装到您的上下文中
let mut context = stk::Context::with_default_packages()?;
context.install(stk_json::module()?)?;
在Rune中使用它
use json;
fn main() {
let data = json::from_string("{\"key\": 42}");
dbg(data);
}
lib.rs
:
json包,提供访问序列化和反序列化JSON的函数。
用法
将以下内容添加到您的 Cargo.toml
stk = "0.2"
stk-json = "0.2"
将其安装到您的上下文中
let mut context = stk::Context::with_default_packages()?;
context.install(stk_json::module()?)?;
在Rune中使用它
use json;
fn main() {
let data = json::from_string("{\"key\": 42}");
dbg(data);
}
依赖项
~4–14MB
~152K SLoC