5个不稳定版本
使用旧的Rust 2015
0.9.0 | 2016年12月8日 |
---|---|
0.8.0 | 2016年10月10日 |
0.7.2 | 2016年8月20日 |
0.7.1 | 2016年8月11日 |
0.7.0 | 2016年8月1日 |
#119 in #代码生成
29 每月下载量
2MB
36K SLoC
柴油代码生成器语法
通过Syntex提供diesel_codegen
的功能,用于稳定版本。
入门指南
将diesel_codegen_syntex
添加到您的Cargo.toml
中,指定您使用的后端。
diesel_codegen_syntex = { version = "0.9.0", features = ["postgres"] }
接下来,将任何需要代码生成的模块的mod
声明移动到单独的文件中,例如lib.in.rs
,如下所示
// main.in.rs
mod schema;
mod models;
// main.rs
include!(concat!(env!("OUT_DIR"), "/main.rs"));
最后,添加一个构建文件,该文件调用diesel_codgen_syntex::expand
// build.rs
fn main() {
let out_dir = env::var("OUT_DIR").unwrap();
let src = Path::new("src/main.in.rs");
let dst = Path::new(&out_dir).join("main.rs");
diesel_codegen_syntex::expand(&src, &dst).unwrap();
}
有关更多示例,请参阅入门指南的第4节
依赖项
~2.3–6MB
~119K SLoC