Skip to content

Commit

Permalink
bump versions;crate overall v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SichangHe committed Mar 10, 2024
1 parent c9b5614 commit 944d799
Show file tree
Hide file tree
Showing 10 changed files with 192 additions and 120 deletions.
276 changes: 174 additions & 102 deletions route_verification/Cargo.lock

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions route_verification/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const_format = "0.2"
dashmap = "5.5"
encoding_rs = "0.8"
encoding_rs_io = "0.1"
env_logger = "0.10"
env_logger = "0.11"
hashbrown = { version = "0.14", features = ["rayon"] }
ipnet = { version = "2.9", features = ["serde"] }
itertools = "0.12"
Expand All @@ -42,19 +42,19 @@ thiserror = "1.0"

as_path_regex = { package = "route_verification_as_path_regex", path = "./as_path_regex", version = "0.1.0" }
as_rel = { package = "route_verification_as_rel", path = "./as_rel", version = "0.1.0" }
bgp = { package = "route_verification_bgp", path = "./bgp", version = "0.2.0" }
bgp = { package = "route_verification_bgp", path = "./bgp", version = "0.3.0" }
bgpmap = { package = "route_verification_bgpmap", path = "./bgpmap", version = "0.1.0" }
bloom = { package = "route_verification_bloom", path = "./bloom", version = "0.1.0" }
bloom = { package = "route_verification_bloom", path = "./bloom", version = "0.1.1" }
common_regex = { package = "route_verification_common_regex", path = "./common_regex", version = "0.1.0" }
graph = { package = "route_verification_graph", path = "./graph", version = "0.1.0" }
io = { package = "route_verification_io", path = "./io", version = "0.1.0" }
ir = { package = "route_verification_ir", path = "./ir", version = "0.1.1" }
irr = { package = "route_verification_irr", path = "./irr", version = "0.1.1" }
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" }
ir = { package = "route_verification_ir", path = "./ir", version = "0.2.0" }
irr = { package = "route_verification_irr", path = "./irr", version = "0.2.0" }
lex = { package = "route_verification_lex", path = "./lex", version = "0.2.0" }
parse = { package = "route_verification_parse", path = "./parse", version = "0.2.0" }
shared_struct = { package = "route_verification_shared_struct", path = "./shared_struct", version = "0.1.1" }

route_verification = { package = "route_verification", path = ".", version = "0.2.0" }
route_verification = { package = "route_verification", path = ".", version = "0.3.0" }

[workspace.package]
description = "Parse RPSL in the IRR to verify observed BGP routes"
Expand All @@ -63,7 +63,7 @@ repository = "https://github.com/SichangHe/internet_route_verification"

[package]
name = "route_verification"
version = "0.2.0"
version = "0.3.0"
edition = "2021"

description.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion route_verification/bgp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "route_verification_bgp"
version = "0.2.0"
version = "0.3.0"
edition = "2021"

description.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion route_verification/bloom/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "route_verification_bloom"
version = "0.1.0"
version = "0.1.1"
edition = "2021"

description.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion route_verification/ir/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "route_verification_ir"
version = "0.1.1"
version = "0.2.0"
edition = "2021"

description.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion route_verification/irr/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "route_verification_irr"
version = "0.1.1"
version = "0.2.0"
edition = "2021"

description.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion route_verification/lex/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "route_verification_lex"
version = "0.1.0"
version = "0.2.0"
edition = "2021"

description.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion route_verification/parse/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "route_verification_parse"
version = "0.1.0"
version = "0.2.0"
edition = "2021"

description.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion route_verification/rib_stats/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rib_stats"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
description.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion route_verification/shared_struct/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "route_verification_shared_struct"
version = "0.1.0"
version = "0.1.1"
edition = "2021"

description.workspace = true
Expand Down

0 comments on commit 944d799

Please sign in to comment.