diff --git a/pilota-build/src/codegen/toml.rs b/pilota-build/src/codegen/toml.rs index 7baa1873..9977d5a0 100644 --- a/pilota-build/src/codegen/toml.rs +++ b/pilota-build/src/codegen/toml.rs @@ -16,6 +16,8 @@ pub fn merge_tomls(a: &mut toml::Value, b: toml::Value) { a.insert(k, v); } }), + // maybe depend on specific version for testing, don't do anything + (toml::Value::Table(_), toml::Value::String(_)) => {} pair => panic!("can not merge {pair:?}"), } }