Skip to content
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

Lower MSRV via workspace configuration #1201

Merged
merged 2 commits into from
Jan 7, 2025
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
3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ resolver = "2"
# This optional cfg flag is used by tokio code to set task name
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tokio_unstable)'] }

[workspace.package]
rust-version = "1.77"

[profile.bench]
debug = true
strip = "none"
2 changes: 1 addition & 1 deletion zbus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "zbus"
version = "5.2.0"
authors = ["Zeeshan Ali Khan <[email protected]>"]
edition = "2021"
rust-version = "1.80"
rust-version = { workspace = true }

description = "API for D-Bus communication"
repository = "https://github.com/dbus2/zbus/"
Expand Down
2 changes: 1 addition & 1 deletion zbus_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ authors = [
"Zeeshan Ali Khan <[email protected]>",
]
edition = "2021"
rust-version = "1.80"
rust-version = { workspace = true }

description = "proc-macros for zbus"
repository = "https://github.com/dbus2/zbus/"
Expand Down
2 changes: 1 addition & 1 deletion zbus_names/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "zbus_names"
version = "4.1.0"
authors = ["Zeeshan Ali Khan <[email protected]>"]
edition = "2021"
rust-version = "1.80"
rust-version = { workspace = true }

description = "A collection of D-Bus bus names types"
repository = "https://github.com/dbus2/zbus/"
Expand Down
2 changes: 1 addition & 1 deletion zbus_xml/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "zbus_xml"
version = "5.0.1"
authors = ["Zeeshan Ali Khan <[email protected]>"]
edition = "2021"
rust-version = "1.80"
rust-version = { workspace = true }

description = "API to handle D-Bus introspection XML"
repository = "https://github.com/dbus2/zbus/"
Expand Down
2 changes: 1 addition & 1 deletion zbus_xmlgen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ authors = [
"Zeeshan Ali Khan <[email protected]>",
]
edition = "2021"
rust-version = "1.80"
rust-version = { workspace = true }

description = "D-Bus XML interface code generator"
repository = "https://github.com/dbus2/zbus/"
Expand Down
2 changes: 1 addition & 1 deletion zvariant/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "zvariant"
version = "5.1.0"
authors = ["Zeeshan Ali Khan <[email protected]>"]
edition = "2021"
rust-version = "1.80"
rust-version = { workspace = true }

description = "D-Bus & GVariant encoding & decoding"
repository = "https://github.com/dbus2/zbus/"
Expand Down
2 changes: 1 addition & 1 deletion zvariant_derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name = "zvariant_derive"
version = "5.1.0"
authors = ["Zeeshan Ali Khan <[email protected]>"]
edition = "2021"
rust-version = "1.80"
rust-version = { workspace = true }

description = "D-Bus & GVariant encoding & decoding"
repository = "https://github.com/dbus2/zbus/"
Expand Down
2 changes: 1 addition & 1 deletion zvariant_utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = [
"turbocooler <[email protected]>",
]
edition = "2021"
rust-version = "1.80"
rust-version = { workspace = true }

description = "Various utilities used internally by the zvariant crate."
repository = "https://github.com/dbus2/zbus/"
Expand Down
Loading