We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 584bf26 commit 579d448Copy full SHA for 579d448
src/lib.rs
@@ -60,7 +60,7 @@ pub unsafe extern "C" fn spring_config_toml(
60
let s = CStr::from_ptr(overwrite_config_toml);
61
let s = s.to_str().expect("failed to parse TOML string into UTF-8");
62
63
- let config = springql_core::api::spring_config_toml(s).expect("failed to parse TOML config");
+ let config = springql_core::api::SpringConfig::new(s).expect("failed to parse TOML config");
64
SpringConfig::new(config).into_ptr()
65
}
66
0 commit comments