You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/bin/cp2cp.rs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -200,7 +200,7 @@ fn main() {
200
200
201
201
#[cfg(feature = "cq")]
202
202
let output_values = ifletSome(filter) = opts.cq_filter{
203
-
let filter = match jaq_all::compile_with(&filter, jaq_std::defs(),jaq_std::funs(),&[]){
203
+
let filter = match jaq_all::compile_with(&filter,jaq_all::jaq_core::defs().chain(jaq_std::defs()), jaq_all::jaq_core::funs().chain(jaq_std::funs()),&[]){
204
204
Ok(filter) => filter,
205
205
Err(error) => {
206
206
eprintln!("Failed to parse cq filter: {error:?}");
0 commit comments