diff --git a/route_verification/Cargo.lock b/route_verification/Cargo.lock index d9533ea..61052cf 100644 --- a/route_verification/Cargo.lock +++ b/route_verification/Cargo.lock @@ -1266,6 +1266,13 @@ version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" +[[package]] +name = "rib_stats" +version = "0.1.0" +dependencies = [ + "route_verification", +] + [[package]] name = "route_verification" version = "0.2.0" diff --git a/route_verification/Cargo.toml b/route_verification/Cargo.toml index d2e2d19..0e50cb3 100644 --- a/route_verification/Cargo.toml +++ b/route_verification/Cargo.toml @@ -10,6 +10,8 @@ members = [ "lex", "parse", "shared_struct", + # Binary + "rib_stats", ] [workspace.dependencies] @@ -49,6 +51,8 @@ lex = { package = "route_verification_lex", path = "./lex", version = "0.1.0" } parse = { package = "route_verification_parse", path = "./parse", version = "0.1.0" } shared_struct = { package = "route_verification_shared_struct", path = "./shared_struct", version = "0.1.0" } +route_verification = { package = "route_verification", path = ".", version = "0.2.0" } + [workspace.package] description = "Parse RPSL in the IRR to verify observed BGP routes" license = "MIT" diff --git a/route_verification/rib_stats/Cargo.toml b/route_verification/rib_stats/Cargo.toml new file mode 100644 index 0000000..851140b --- /dev/null +++ b/route_verification/rib_stats/Cargo.toml @@ -0,0 +1,12 @@ +[package] +name = "rib_stats" +version = "0.1.0" +edition = "2021" +description.workspace = true +license.workspace = true +repository.workspace = true + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +route_verification.workspace = true diff --git a/route_verification/rib_stats/src/main.rs b/route_verification/rib_stats/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/route_verification/rib_stats/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}