Skip to content
Merged
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
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion crates/abq_cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "abq"
version = "1.9.3"
version = "1.9.4"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/abq_test_support/abq_test_utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ tokio.workspace = true
tracing-test.workspace = true
tempfile.workspace = true
termcolor.workspace = true
abq_utils = { path = "../../abq_utils" }
abq_utils = { path = "../../abq_utils", features = ["expose-native-protocols"] }
2 changes: 1 addition & 1 deletion crates/abq_test_support/native_runner_simulator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ tokio = { version = "1.26.0", features = [

tempfile.workspace = true

abq_utils = { path = "../../abq_utils" }
abq_utils = { path = "../../abq_utils", features = ["expose-native-protocols"] }
1 change: 1 addition & 0 deletions crates/abq_utils/src/net_protocol/runners.rs
Original file line number Diff line number Diff line change
Expand Up @@ -907,6 +907,7 @@ impl RawTestResultMessage {
}
}

#[cfg(feature = "expose-native-protocols")]
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Without this and the other related Cargo.toml changes, cargo b was failing locally (ran it per the release instructions). I'm not very familiar with the impact of doing this, though.

pub fn from_test_result(witness: ProtocolWitness, test_result: TestResult) -> Self {
use PrivProtocolWitness::*;
match witness.0 {
Expand Down