obsidian-export/src
Nick Groenen f94753c511
Chg: Don't Box FilterFn in WalkOptions
Previously, `filter_fn` on the `WalkOptions` struct looked like:

    pub filter_fn: Option<Box<&'static FilterFn>>,

This boxing was unneccesary and has been changed to:

    pub filter_fn: Option<&'static FilterFn>,

This will only affect people who use obsidian-export as a library in
other Rust programs, not users of the CLI.

For those library users, they no longer need to supply `FilterFn`
wrapped in a Box.
2021-02-12 13:37:00 +01:00
..
lib.rs Apply clippy suggestions following rust 1.50.0 2021-02-12 13:36:59 +01:00
main.rs Apply clippy suggestions following rust 1.50.0 2021-02-12 13:36:59 +01:00
walker.rs Chg: Don't Box FilterFn in WalkOptions 2021-02-12 13:37:00 +01:00