Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
233 changes: 229 additions & 4 deletions Cargo.lock

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

20 changes: 18 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,16 @@ edition = "2024"
[dependencies]
serde = { version = "1", features = ["derive"] }
bincode = "2"
tokio = { version = "1", default-features = false, features = ["net", "signal", "rt-multi-thread", "macros", "sync", "time", "io-util"] }
tokio = { version = "1", default-features = false, features = [
"net",
"signal",
"rt-multi-thread",
"macros",
"sync",
"time",
"io-util",
"test-util",
] }
Comment thread
leynos marked this conversation as resolved.
tokio-util = { version = "0.7", features = ["rt"] }
futures = "0.3"
async-trait = "0.1"
Expand All @@ -25,8 +34,9 @@ logtest = "^2.0"
proptest = "^1.0"
loom = "^0.7"
async-stream = "0.3"
tokio = { version = "1", default-features = false, features = ["test-util"] }
serial_test = "3.1"
# Permit compatible bug fixes but block breaking updates
cucumber = ">=0.20, <0.21"
metrics-util = "0.20"
metrics-exporter-prometheus = "0.17"

Expand All @@ -38,3 +48,9 @@ advanced-tests = []
[lints.clippy]
pedantic = "warn"

# The Cucumber test runner defines its own async main function,
# so the standard test harness must be disabled.
[[test]]
name = "cucumber"
harness = false
required-features = ["advanced-tests"]
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,9 @@ WireframeServer::new(|| {

This example showcases how derive macros and the framing abstraction simplify a
binary protocol server. See the
[full example](docs/rust-binary-router-library-design.md#5-6-illustrative-api-usage-examples) <!-- markdownlint-disable-line MD013 -->
in the design document for further details.
[full example](docs/rust-binary-router-library-design.md#5-6-illustrative-api-usage-examples)
<!-- markdownlint-disable-line MD013 --> in the design document for further
details.
Comment thread
leynos marked this conversation as resolved.

## Custom Envelopes

Expand Down
Loading
Loading