File tree Expand file tree Collapse file tree 3 files changed +15
-12
lines changed Expand file tree Collapse file tree 3 files changed +15
-12
lines changed Original file line number Diff line number Diff line change 1
- use bgpfu:: query :: RpslEvaluator ;
1
+ use bgpfu:: RpslEvaluator ;
2
2
3
3
use clap:: Parser ;
4
4
Original file line number Diff line number Diff line change 43
43
// docs.rs build config
44
44
#![ cfg_attr( docsrs, feature( doc_auto_cfg) ) ]
45
45
46
- // silence unused dev-dependency warnings
47
- #[ cfg( test) ]
48
- mod deps {
49
- use version_sync as _;
50
- }
51
-
52
46
mod cli;
53
47
pub use self :: cli:: main;
54
48
55
49
mod format;
56
50
pub ( crate ) use self :: format:: Format ;
51
+
52
+ // silence unused dev-dependency warnings
53
+ #[ cfg( test) ]
54
+ mod deps {
55
+ use version_sync as _;
56
+ }
Original file line number Diff line number Diff line change 43
43
// docs.rs build config
44
44
#![ cfg_attr( docsrs, feature( doc_auto_cfg) ) ]
45
45
46
+ /// Error types
47
+ mod error;
48
+ pub use self :: error:: Error ;
49
+
50
+ /// Query pipelining and response handling.
51
+ mod query;
52
+ pub use self :: query:: RpslEvaluator ;
53
+
46
54
// silence unused dev-dependency warnings
47
55
#[ cfg( test) ]
48
56
mod deps {
49
57
use version_sync as _;
50
58
}
51
-
52
- /// Error types
53
- pub mod error;
54
- /// Query pipelining and response handling.
55
- pub mod query;
You can’t perform that action at this time.
0 commit comments