Skip to content

Commit c9521d2

Browse files
committed
fix: address remaining P2/P3 review findings + testing gaps
Signed-off-by: Teryl Taylor <terylt@ibm.com>
1 parent 7a24092 commit c9521d2

9 files changed

Lines changed: 1374 additions & 251 deletions

File tree

Cargo.lock

Lines changed: 32 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ authors = ["Teryl Taylor"]
2222

2323
[workspace.dependencies]
2424
tokio = { version = "1", features = ["full"] }
25+
tokio-util = { version = "0.7", features = ["rt"] }
2526
serde = { version = "1", features = ["derive", "rc"] }
2627
serde_yaml = "0.9"
2728
serde_json = "1"
@@ -32,5 +33,7 @@ uuid = { version = "1", features = ["v4", "serde"] }
3233
paste = "1"
3334
futures = "0.3"
3435
hashbrown = "0.15"
36+
arc-swap = "1.7"
37+
wildmatch = "2"
3538
rmp-serde = "1"
3639
serde_bytes = "0.11"

crates/cpex-core/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ authors.workspace = true
1717

1818
[dependencies]
1919
tokio = { workspace = true }
20+
tokio-util = { workspace = true }
2021
serde = { workspace = true }
2122
serde_yaml = { workspace = true }
2223
serde_json = { workspace = true }
@@ -26,3 +27,5 @@ tracing = { workspace = true }
2627
uuid = { workspace = true }
2728
futures = { workspace = true }
2829
hashbrown = { workspace = true }
30+
arc-swap = { workspace = true }
31+
wildmatch = { workspace = true }

0 commit comments

Comments
 (0)