chore: 更新 fidc-backtest-engine - 2026-05-07
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
//! 把 DSP 运行时 schema 序列化为 JSON 输出到 stdout。
|
||||
//!
|
||||
//! 用法(在 fidc-backtest-engine 仓库根):
|
||||
//! cargo run -p fidc-core --bin dump_platform_runtime_schema \
|
||||
//! > ../omniquant/src/generated/platformRuntimeSchema.json
|
||||
//!
|
||||
//! 这是 omniquant 前端编译期校验表达式标识符的事实源;任何对
|
||||
//! reserved_scope_names / is_runtime_helper / register_fn 清单的修改,记得
|
||||
//! 重新跑这个命令并把生成文件提交到 omniquant。
|
||||
|
||||
use fidc_core::runtime_schema_json;
|
||||
|
||||
fn main() {
|
||||
let schema = runtime_schema_json();
|
||||
let output = serde_json::to_string_pretty(&schema).expect("serialize schema");
|
||||
println!("{output}");
|
||||
}
|
||||
Reference in New Issue
Block a user