Commit 05feb07 1 parent 48fb957 commit 05feb07 Copy full SHA for 05feb07
File tree 1 file changed +10
-9
lines changed
1 file changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -445,6 +445,16 @@ impl Manifest {
445
445
}
446
446
}
447
447
448
+ pub fn resolved_toml ( & self ) -> & TomlManifest {
449
+ & self . resolved_toml
450
+ }
451
+ pub fn summary ( & self ) -> & Summary {
452
+ & self . summary
453
+ }
454
+ pub fn summary_mut ( & mut self ) -> & mut Summary {
455
+ & mut self . summary
456
+ }
457
+
448
458
pub fn dependencies ( & self ) -> & [ Dependency ] {
449
459
self . summary . dependencies ( )
450
460
}
@@ -469,12 +479,6 @@ impl Manifest {
469
479
pub fn package_id ( & self ) -> PackageId {
470
480
self . summary . package_id ( )
471
481
}
472
- pub fn summary ( & self ) -> & Summary {
473
- & self . summary
474
- }
475
- pub fn summary_mut ( & mut self ) -> & mut Summary {
476
- & mut self . summary
477
- }
478
482
pub fn targets ( & self ) -> & [ Target ] {
479
483
& self . targets
480
484
}
@@ -500,9 +504,6 @@ impl Manifest {
500
504
pub fn replace ( & self ) -> & [ ( PackageIdSpec , Dependency ) ] {
501
505
& self . replace
502
506
}
503
- pub fn resolved_toml ( & self ) -> & TomlManifest {
504
- & self . resolved_toml
505
- }
506
507
pub fn patch ( & self ) -> & HashMap < Url , Vec < Dependency > > {
507
508
& self . patch
508
509
}
You can’t perform that action at this time.
0 commit comments