5 个不稳定版本
0.2.1 | 2022年11月29日 |
---|---|
0.2.0 | 2020年4月2日 |
0.1.1 | 2019年6月4日 |
0.1.0 | 2019年5月28日 |
0.0.1 | 2019年5月14日 |
173 在 模板引擎 中
2,108 每月下载量
用于 6 crate
8KB
106 行
envsubst
一个简单的 Rust 库,用于变量替换。
此库提供字符串操作的帮助函数,从上下文 环境 映射中获取值,并替换所有匹配的占位符。
其名称和逻辑类似于 GNU 工具 envsubst
,但仅支持花括号定界的变量(即 ${foo}
),并从变量的显式映射中获取替换值。
许可证
许可协议为以下之一
- MIT 许可证 - https://open-source.org.cn/licenses/MIT
- Apache 许可证,版本 2.0 - https://apache.ac.cn/licenses/LICENSE-2.0
任选其一。
lib.rs
:
字符串模板中的变量替换。
此库提供字符串操作的帮助函数,从上下文 环境 映射中获取值,并替换所有匹配的占位符。
其名称和逻辑类似于 GNU 工具 envsubst
,但仅支持花括号定界的变量(即 ${foo}
),并从变量的显式映射中获取替换值。
示例
let base_url = "${protocol}://${hostname}/${endpoint}";
assert!(envsubst::is_templated(base_url));
let mut context = std::collections::HashMap::new();
context.insert("protocol".to_string(), "https".to_string());
context.insert("hostname".to_string(), "example.com".to_string());
context.insert("endpoint".to_string(), "login".to_string());
assert!(envsubst::validate_vars(&context).is_ok());
let final_url = envsubst::substitute(base_url, &context).unwrap();
assert!(!envsubst::is_templated(&final_url));
assert_eq!(final_url, "https://example.com/login");
依赖项
~305–770KB
~18K SLoC