File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1+ [toolchain ]
2+ channel = " 1.91.0"
3+ components = [" clippy" , " rustfmt" ]
4+ profile = " minimal"
Original file line number Diff line number Diff line change @@ -542,15 +542,15 @@ pub enum BundleResolutionError {
542542 NotCached {
543543 identity : String ,
544544 /// Bundle available in datasite directory (caller can import if desired)
545- datasite_available : Option < DatasiteBundleInfo > ,
545+ datasite_available : Option < Box < DatasiteBundleInfo > > ,
546546 } ,
547547 /// Cached bundle fingerprint doesn't match envelope's expected fingerprint.
548548 FingerprintMismatch {
549549 identity : String ,
550550 expected : String ,
551551 cached : String ,
552552 /// Bundle available in datasite directory (caller can import if desired)
553- datasite_available : Option < DatasiteBundleInfo > ,
553+ datasite_available : Option < Box < DatasiteBundleInfo > > ,
554554 } ,
555555 /// Error loading or parsing bundle.
556556 LoadError { identity : String , source : String } ,
@@ -674,12 +674,12 @@ pub fn resolve_sender_bundle(
674674 sender_identity, expected_fp, info. fingerprint
675675 ) ;
676676 }
677- Some ( DatasiteBundleInfo {
677+ Some ( Box :: new ( DatasiteBundleInfo {
678678 identity : info. identity ,
679679 fingerprint : info. fingerprint ,
680680 matches_expected : matches,
681681 path : datasite_bundle_path ( & context. data_root , sender_identity) ,
682- } )
682+ } ) )
683683 }
684684 Ok ( None ) => None ,
685685 Err ( e) => {
You can’t perform that action at this time.
0 commit comments