-
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?
Changes from all commits
a5c95df
ebc3372
262b8eb
a40b0bd
3353f38
72e89a1
206ec83
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ path = "src/bin/main.rs" | |
|
||
[dependencies] | ||
# Ditto dependenceis | ||
dittolive-ditto = "4.10.0" | ||
dittolive-ditto = "4.10.2" | ||
|
||
# External dependencies | ||
anyhow = "1" | ||
|
@@ -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 commentThe reason will be displayed to describe this comment to others. Learn more. Is this removal of a trailing new line intentional? |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 commentThe 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. |
||
if cfg!(target_os = "linux") { | ||
println!("cargo:rustc-link-arg=-Wl,--allow-multiple-definition"); | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
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?