Skip to content

Commit

Permalink
docs: inline pub use for #194
Browse files Browse the repository at this point in the history
  • Loading branch information
SichangHe committed Aug 18, 2024
1 parent 24ca73e commit af42011
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions route_verification/as_rel/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ mod relationship;
#[cfg(test)]
mod tests;

#[doc(inline)]
pub use relationship::*;

use Relationship::*;
Expand Down
1 change: 1 addition & 0 deletions route_verification/bgp/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ mod tests;
pub mod verbosity;
pub mod wrapper;

#[doc(inline)]
pub use {
bgpmap::{self as map, AsPathEntry},
cmp::Compare,
Expand Down
1 change: 1 addition & 0 deletions route_verification/parse/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ pub mod router_expr;
#[cfg(test)]
mod tests;

#[doc(inline)]
pub use {
self::lex::parse_lexed,
action::parse_actions,
Expand Down
1 change: 1 addition & 0 deletions route_verification/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
use anyhow::{bail, Result};
use log::debug;

#[doc(inline)]
pub use {as_rel, bgp, common_regex, io, ir, irr, lex, parse};

pub mod fs;
Expand Down

0 comments on commit af42011

Please sign in to comment.