44#![ doc( html_root_url = "https://docs.rs/component_model_types/latest/component_model_types/" ) ]
55#![ doc = include_str ! ( concat!( env!( "CARGO_MANIFEST_DIR" ) , "/" , "Readme.md" ) ) ]
66
7- // /// Axiomatic things. // Removed
8- // #[ cfg( feature = "enabled" ) ] // Removed
9- // #[ cfg( feature = "types_component_model" ) ] // Removed
10- // mod axiomatic; // Removed
11- // /// Definition of component_model. // Removed
12- // #[ cfg( feature = "enabled" ) ] // Removed
13- // #[ cfg( feature = "types_component_model" ) ] // Removed
14- // mod definition; // Removed
15- // /// Forming process. // Removed
16- // #[ cfg( feature = "enabled" ) ] // Removed
17- // #[ cfg( feature = "types_component_model" ) ] // Removed
18- // mod forming; // Removed
19- /// Storage.
20- #[ cfg( feature = "enabled" ) ]
21- #[ cfg( feature = "types_component_model" ) ]
22- mod storage;
23-
24- // /// Interface for collections. // Removed
25- // #[ cfg( feature = "enabled" ) ] // Removed
26- // #[ cfg( any( not( feature = "no_std" ), feature = "use_alloc" ) ) ] // Removed
27- // #[ cfg( feature = "types_component_model" ) ] // Removed
28- // mod collection; // Removed
29-
307/// Component-based forming.
318#[ cfg( feature = "enabled" ) ]
329#[ cfg( feature = "types_component_assign" ) ]
@@ -58,11 +35,6 @@ pub mod orphan
5835 #[ doc( inline ) ]
5936 pub use crate :: exposed:: * ; // Changed to crate::exposed::*
6037
61- // #[ doc( inline ) ] // Removed this block
62- // #[ cfg( any( not( feature = "no_std" ), feature = "use_alloc" ) ) ] // Removed
63- // #[ cfg( feature = "types_component_model" ) ] // Removed
64- // pub use crate::collection::orphan::*; // Removed
65-
6638}
6739
6840/// Exposed namespace of the module.
@@ -72,21 +44,6 @@ pub mod exposed
7244 #[ doc( inline ) ]
7345 pub use crate :: prelude:: * ; // Changed to crate::prelude::*
7446
75- #[ doc( inline ) ]
76- #[ cfg( feature = "types_component_model" ) ]
77- pub use super ::
78- {
79- // axiomatic::*, // Removed
80- // definition::*, // Removed
81- // forming::*, // Removed
82- storage:: * ,
83- } ;
84-
85- // #[ doc( inline ) ] // Removed this block
86- // #[ cfg( any( not( feature = "no_std" ), feature = "use_alloc" ) ) ] // Removed
87- // #[ cfg( feature = "types_component_model" ) ] // Removed
88- // pub use crate::collection::exposed::*; // Removed
89-
9047}
9148
9249/// Prelude to use essentials: `use my_module::prelude::*`.
@@ -97,9 +54,4 @@ pub mod prelude
9754 #[ cfg( feature = "types_component_assign" ) ]
9855 pub use crate :: component:: * ; // Changed to crate::component::*
9956
100- // #[ doc( inline ) ] // Removed this block
101- // #[ cfg( any( not( feature = "no_std" ), feature = "use_alloc" ) ) ] // Removed
102- // #[ cfg( feature = "types_component_model" ) ] // Removed
103- // pub use crate::collection::prelude::*; // Removed
104-
10557}
0 commit comments