Skip to content

Commit

Permalink
empty rib_stats binary package
Browse files Browse the repository at this point in the history
  • Loading branch information
SichangHe committed Dec 23, 2023
1 parent 91ab903 commit 3d796eb
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 0 deletions.
7 changes: 7 additions & 0 deletions route_verification/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions route_verification/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ members = [
"lex",
"parse",
"shared_struct",
# Binary
"rib_stats",
]

[workspace.dependencies]
Expand Down Expand Up @@ -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"
Expand Down
12 changes: 12 additions & 0 deletions route_verification/rib_stats/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
3 changes: 3 additions & 0 deletions route_verification/rib_stats/src/main.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}

0 comments on commit 3d796eb

Please sign in to comment.