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 8fda330 commit 5416c93Copy full SHA for 5416c93
crates/llm-chain/src/options.rs
@@ -138,7 +138,7 @@ macro_rules! options {
138
{
139
let mut _opts = $crate::options::Options::builder();
140
$(
141
- $crate::options::Opt::$opt_name($opt_value.into());
+ _opts.add_option($crate::options::Opt::$opt_name($opt_value.into()));
142
)*
143
_opts.build()
144
}
deny.toml
@@ -21,6 +21,7 @@ allow = [
21
"Unicode-DFS-2016",
22
"BSD-3-Clause",
23
"OpenSSL",
24
+ "MPL-2.0"
25
]
26
copyleft = "deny"
27
allow-osi-fsf-free = "neither"
0 commit comments