From 2c09ff42df422e61ec2d00f839516e6794f424ab Mon Sep 17 00:00:00 2001 From: Jasper den Hertog Date: Thu, 21 Dec 2023 15:23:57 +0100 Subject: [PATCH] non-generic communities() --- Cargo.toml | 6 +++++- src/units/rib_unit/tests.rs | 6 +++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2598165..57c8528 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"] } @@ -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 } diff --git a/src/units/rib_unit/tests.rs b/src/units/rib_unit/tests.rs index d94d532..850d8f0 100644 --- a/src/units/rib_unit/tests.rs +++ b/src/units/rib_unit/tests.rs @@ -206,7 +206,7 @@ async fn process_update_equivalent_route_twice() { .raw_message .raw_message() .0 - .communities::() + .communities() .unwrap() .unwrap() .next() @@ -236,7 +236,7 @@ async fn process_update_equivalent_route_twice() { .raw_message .raw_message() .0 - .communities::() + .communities() .unwrap() .unwrap() .next() @@ -272,7 +272,7 @@ async fn process_update_equivalent_route_twice() { .raw_message .raw_message() .0 - .communities::() + .communities() .unwrap() .unwrap() .next()