[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. Since I'm not allowed to clone `app::A`, I can't resolve
  [31m│[0m this conflict.
  [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:43:1]
  [31m│[0m        [2m43[0m │     // `A` is a singleton, therefore it will be an input of the dependency closure for the handler
  [31m│[0m        [2m44[0m │     bp.constructor(f!(crate::a), Lifecycle::Singleton);
  [31m│[0m           · [35;1m                   ──────┬─────[0m
  [31m│[0m           ·                          [35;1m╰── The constructor was registered here[0m
  [31m│[0m        [2m45[0m │     bp.constructor(f!(crate::b), Lifecycle::RequestScoped);
  [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:44:1]
  [31m│[0m        [2m44[0m │     bp.constructor(f!(crate::a), Lifecycle::Singleton);
  [31m│[0m        [2m45[0m │     bp.constructor(f!(crate::b), Lifecycle::RequestScoped);
  [31m│[0m           · [35;1m                   ──────┬─────[0m
  [31m│[0m           ·                          [35;1m╰── One of the consuming constructors[0m
  [31m│[0m        [2m46[0m │     bp.constructor(f!(crate::c), Lifecycle::RequestScoped);
  [31m│[0m           ╰────
  [31m│[0m        ☞
  [31m│[0m           ╭─[[36;1;4msrc/lib.rs[0m:45:1]
  [31m│[0m        [2m45[0m │     bp.constructor(f!(crate::b), Lifecycle::RequestScoped);
  [31m│[0m        [2m46[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        [2m47[0m │     bp.route(GET, "/home", f!(crate::handler));
  [31m│[0m           ╰────