5个版本
0.6.3 | 2022年8月8日 |
---|---|
0.6.2 | 2022年7月28日 |
0.6.1 | 2022年7月20日 |
0.6.0 | 2022年7月6日 |
0.1.0 | 2022年7月5日 |
#906 在 配置
32 每月下载量
在 enarx-exec-wasmtime 中使用
12KB
283 行
此crate提供Config
,可用于与任何serde
反序列化器一起使用。其主要目的是读取Enarx.toml
配置文件。
extern crate toml;
use enarx_config::Config;
const CONFIG: &str = r#"
[[files]]
name = "LISTEN"
kind = "listen"
prot = "tls"
port = 12345
"#;
let config: Config = toml::from_str(CONFIG).unwrap();
lib.rs
:
Enarx Keep中WASI应用程序的配置
依赖
~1.4–2.2MB
~70K SLoC