-
Notifications
You must be signed in to change notification settings - Fork 3
rust-tui: Update Ditto SDK to 4.10.2 and Use Rust 1.81.0 #67
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, some comments below.
@@ -44,7 +44,7 @@ jobs: | |||
- name: Install Rust | |||
uses: actions-rs/toolchain@v1 | |||
with: | |||
toolchain: stable | |||
toolchain: 1.81.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it possible to source this from the rust-toolchain
file to avoid a duplicate source of truth?
@@ -0,0 +1,6 @@ | |||
fn main() { | |||
// Workaround for "multiple definition" linker errors on Linux (#SDKS-1088) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this fix just needed for our specific CI setup or something that customers should understand how to apply to their own setups? A bit more context could help when someone is reading this code who is not familiar with this issue.
@@ -33,4 +33,3 @@ tracing = "0.1.41" | |||
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] } | |||
tokio-stream = { version = "0.1.17", features = ["sync"] } | |||
uuid = "1.13" | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this removal of a trailing new line intentional?
This might need to get closed given we have a PR now for 4.11.1. |
Updates the Rust SDK version to 4.10.2, and works around linker errors when building on Ubuntu.
This also updates the GitHub actions to use Rust 1.81.0 in CI, which is the version needed for compatibility with the 4.10.2 SDK.
Closes SDKS-1088