[31m[1mERROR[0m[39m: 
  [31m×[0m I can't generate code that will pass the borrow checker *and* match the
  [31m│[0m instructions in your blueprint.
  [31m│[0m There are 2 components that take `app::A` as an input parameter, consuming
  [31m│[0m it by value:
  [31m│[0m - `app::mw`, a wrapping middleware
  [31m│[0m - `crate::route_0::Next1`
  [31m│[0m Since I'm not allowed to clone `app::A`, I can't resolve this conflict.
  [31m│[0m 
  [31m│[0m
  [31m│[0m   [36mhelp:[0m Allow me to clone `app::A` in order to satisfy the borrow checker.
  [31m│[0m         You can do so by invoking `.cloning(CloningStrategy::CloneIfNecessary)`
  [31m│[0m         on the type returned by `.constructor`.
  [31m│[0m        ☞
  [31m│[0m           ╭─[[36;1;4msrc/lib.rs[0m:29:1]
  [31m│[0m        [2m29[0m │     let mut bp = Blueprint::new();
  [31m│[0m        [2m30[0m │     bp.constructor(f!(crate::a), Lifecycle::RequestScoped);
  [31m│[0m           · [35;1m                   ──────┬─────[0m
  [31m│[0m           ·                          [35;1m╰── The constructor was registered here[0m
  [31m│[0m        [2m31[0m │     bp.wrap(f!(crate::mw));
  [31m│[0m           ╰────
  [31m│[0m   [36mhelp:[0m Considering changing the signature of the components that consume
  [31m│[0m         `app::A` by value.
  [31m│[0m         Would a shared reference, `&app::A`, be enough?
  [31m│[0m        ☞
  [31m│[0m           ╭─[[36;1;4msrc/lib.rs[0m:30:1]
  [31m│[0m        [2m30[0m │     bp.constructor(f!(crate::a), Lifecycle::RequestScoped);
  [31m│[0m        [2m31[0m │     bp.wrap(f!(crate::mw));
  [31m│[0m           · [35;1m            ──────┬──────[0m
  [31m│[0m           ·                   [35;1m╰── One of the consuming wrapping middlewares[0m
  [31m│[0m        [2m32[0m │     bp.route(GET, "/home", f!(crate::handler));
  [31m│[0m           ╰────
  [31m│[0m   [36mhelp:[0m If `app::A` itself cannot implement `Clone`, consider wrapping it in
  [31m│[0m         an `std::sync::Rc` or `std::sync::Arc`.