Skip to content

Commit

Permalink
Set minimal Rust version to 1.74
Browse files Browse the repository at this point in the history
* It prevents a "future cannot be sent between threads safely" error.
  • Loading branch information
imobachgs committed Dec 29, 2023
1 parent d83b01e commit 7d84f6d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
6 changes: 5 additions & 1 deletion rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ members = [
"agama-derive",
"agama-lib",
"agama-locale-data",
"agama-settings"
"agama-settings",
]
resolver = "2"

[workspace.package]
rust-version = "1.74"
edition = "2021"
5 changes: 3 additions & 2 deletions rust/agama-dbus-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@
name = "agama-dbus-server"
version = "0.1.0"
edition = "2021"
rust-version.workspace = true

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0"
agama-locale-data = { path="../agama-locale-data" }
agama-lib = { path="../agama-lib" }
agama-locale-data = { path = "../agama-locale-data" }
agama-lib = { path = "../agama-lib" }
log = "0.4"
simplelog = "0.12.1"
systemd-journal-logger = "1.0"
Expand Down

0 comments on commit 7d84f6d

Please sign in to comment.