[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::B` as an input parameter, consuming
  [31m│[0m it by value. Since I'm not allowed to clone `app::B`, I can't resolve
  [31m│[0m this conflict.
  [31m│[0m
  [31m│[0m   [36mhelp:[0m Allow me to clone `app::B` 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:65:1]
  [31m│[0m        [2m65[0m │         .error_handler(f!(crate::error_handler));
  [31m│[0m        [2m66[0m │     bp.constructor(f!(crate::b), Lifecycle::RequestScoped);
  [31m│[0m           · [35;1m                   ──────┬─────[0m
  [31m│[0m           ·                          [35;1m╰── The constructor was registered here[0m
  [31m│[0m        [2m67[0m │     bp.constructor(f!(crate::c), Lifecycle::RequestScoped);
  [31m│[0m           ╰────
  [31m│[0m   [36mhelp:[0m Considering changing the signature of the components that consume
  [31m│[0m         `app::B` by value.
  [31m│[0m         Would a shared reference, `&app::B`, be enough?
  [31m│[0m        ☞
  [31m│[0m           ╭─[[36;1;4msrc/lib.rs[0m:67:1]
  [31m│[0m        [2m67[0m │     bp.constructor(f!(crate::c), Lifecycle::RequestScoped);
  [31m│[0m        [2m68[0m │     bp.route(GET, "/home", f!(crate::handler));
  [31m│[0m           · [35;1m                           ─────────┬────────[0m
  [31m│[0m           ·                   [35;1mOne of the consuming request handlers[0m
  [31m│[0m        [2m69[0m │     bp
  [31m│[0m           ╰────
  [31m│[0m        ☞
  [31m│[0m           ╭─[[36;1;4msrc/lib.rs[0m:66:1]
  [31m│[0m        [2m66[0m │     bp.constructor(f!(crate::b), Lifecycle::RequestScoped);
  [31m│[0m        [2m67[0m │     bp.constructor(f!(crate::c), Lifecycle::RequestScoped);
  [31m│[0m           · [35;1m                   ──────┬─────[0m
  [31m│[0m           ·                          [35;1m╰── One of the consuming constructors[0m
  [31m│[0m        [2m68[0m │     bp.route(GET, "/home", f!(crate::handler));
  [31m│[0m           ╰────
  [31m│[0m   [36mhelp:[0m If `app::B` itself cannot implement `Clone`, consider wrapping it in
  [31m│[0m         an `std::sync::Rc` or `std::sync::Arc`.