Skip to content

Commit

Permalink
non-generic communities()
Browse files Browse the repository at this point in the history
  • Loading branch information
density215 committed Dec 21, 2023
1 parent f48ac89 commit 2c09ff4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ pin-project-lite = "^0.2"
rand = "^0.8"
reqwest = { version = "^0.11", default-features = false }
routecore = { version = "^0.4.0-dev", features = ["bgp", "bmp", "serde"], git = "https://github.com/NLnetLabs/routecore.git" }
# routecore = { path = "../../routecore", features = ["bgp", "bmp", "serde"]}
rotonda-fsm = { version = "^0.1.0-dev", git = "https://github.com/NLnetLabs/rotonda-fsm.git" }
# rotonda-fsm = { path = "../rotonda-fsm" }
sanitise-file-name = "^1.0"
serde = { version = "^1.0", features = ["derive", "rc"] }
serde_json = { version = "^1.0", features = ["preserve_order"] }
Expand All @@ -52,8 +54,10 @@ layout-rs = { version = "^0.1" }
mqtt = { version = "^0.23.0", package = "rumqttc", default-features = false }
non-empty-vec = { version = "^0.2", features = ["serde"]}
percent-encoding = "^2.3"
roto = { version = "0.1.0-dev", git = "https://github.com/NLnetLabs/roto.git" }
# roto = { version = "0.1.0-dev", git = "https://github.com/NLnetLabs/roto.git" }
roto = { path = "../roto" }
rotonda-store = { version = "^0.3.0-pre.3", git = "https://github.com/NLnetLabs/rotonda-store.git" }
# rotonda-store = { path = "../rotonda-store" }
serde_with = "^3"
smallvec = { version = "^1.11", features = ["const_generics", "const_new", "union"] }
tokio-metrics = { version = "^0.3", default-features = false }
Expand Down
6 changes: 3 additions & 3 deletions src/units/rib_unit/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ async fn process_update_equivalent_route_twice() {
.raw_message
.raw_message()
.0
.communities::<Community>()
.communities()
.unwrap()
.unwrap()
.next()
Expand Down Expand Up @@ -236,7 +236,7 @@ async fn process_update_equivalent_route_twice() {
.raw_message
.raw_message()
.0
.communities::<Community>()
.communities()
.unwrap()
.unwrap()
.next()
Expand Down Expand Up @@ -272,7 +272,7 @@ async fn process_update_equivalent_route_twice() {
.raw_message
.raw_message()
.0
.communities::<Community>()
.communities()
.unwrap()
.unwrap()
.next()
Expand Down

0 comments on commit 2c09ff4

Please sign in to comment.