36
36
#[ macro_use]
37
37
extern crate lazy_static;
38
38
39
- #[ cfg( feature = "core" ) ]
40
39
pub use crate :: array:: * ;
41
- #[ cfg( feature = "core" ) ]
42
40
mod array;
43
41
44
42
#[ cfg( feature = "algorithm" ) ]
@@ -51,9 +49,7 @@ pub use crate::arith::*;
51
49
#[ cfg( feature = "arithmetic" ) ]
52
50
mod arith;
53
51
54
- #[ cfg( feature = "core" ) ]
55
52
pub use crate :: backend:: * ;
56
- #[ cfg( feature = "core" ) ]
57
53
mod backend;
58
54
59
55
#[ cfg( feature = "blas" ) ]
@@ -66,24 +62,16 @@ pub use crate::data::*;
66
62
#[ cfg( feature = "data" ) ]
67
63
mod data;
68
64
69
- #[ cfg( feature = "core" ) ]
70
65
pub use crate :: device:: * ;
71
- #[ cfg( feature = "core" ) ]
72
66
mod device;
73
67
74
- #[ cfg( feature = "core" ) ]
75
68
pub use crate :: defines:: * ;
76
- #[ cfg( feature = "core" ) ]
77
69
mod defines;
78
70
79
- #[ cfg( feature = "core" ) ]
80
71
pub use crate :: dim4:: Dim4 ;
81
- #[ cfg( feature = "core" ) ]
82
72
mod dim4;
83
73
84
- #[ cfg( feature = "core" ) ]
85
74
pub use crate :: error:: { handle_error_general, register_error_handler, Callback , ErrorCallback } ;
86
- #[ cfg( feature = "core" ) ]
87
75
mod error;
88
76
89
77
#[ cfg( feature = "indexing" ) ]
@@ -135,12 +123,10 @@ pub use crate::statistics::*;
135
123
#[ cfg( feature = "statistics" ) ]
136
124
mod statistics;
137
125
138
- #[ cfg( feature = "core" ) ]
139
- pub use crate :: util:: { FloatingPoint , ComplexFloating , RealFloating , RealNumber } ;
140
126
pub use crate :: util:: { get_size, HasAfEnum , ImplicitPromote } ;
141
- pub use crate :: util:: { GrayRGBConvertible , ImageFilterType , ImageNativeType , Scanable } ;
127
+ pub use crate :: util:: { ComplexFloating , FloatingPoint , RealFloating , RealNumber } ;
142
128
pub use crate :: util:: { CovarianceComputable , EdgeComputable , MedianComputable , MomentsComputable } ;
143
- # [ cfg ( feature = "core" ) ]
129
+ pub use crate :: util :: { GrayRGBConvertible , ImageFilterType , ImageNativeType , Scanable } ;
144
130
mod util;
145
131
146
132
#[ cfg( feature = "vision" ) ]
0 commit comments