dbus crate replaced with zbus#152
dbus crate replaced with zbus#152siegfriedweber merged 13 commits intostackabletech:mainfrom siegfriedweber:zbus
Conversation
soenkeliebau
left a comment
There was a problem hiding this comment.
LGTM - left a few minor comments, but nothing that would prohibit this from being merged.
Ran integration tests those were successfull as well.
| steps: | ||
| - name: Install dbus dependencies | ||
| run: sudo apt-get install libdbus-1-dev libsystemd-dev pkg-config libdbus-1-3 | ||
| - name: Install systemd dependencies |
There was a problem hiding this comment.
Super nit: maybe we should just call this "Install dependencies" - I think pkg-config is just neccessary for creating the APT package, so not strictly related to dbus.
There was a problem hiding this comment.
pkg-config is necessary for libsystemd-sys and openssl-sys. So it is a good idea to give the step a more general name.
| - uses: actions/checkout@v2.3.4 | ||
| - name: Install dbus dependencies | ||
| run: sudo apt-get install libdbus-1-dev libsystemd-dev pkg-config libdbus-1-3 | ||
| - name: Install systemd dependencies |
| [[package]] | ||
| name = "async-compression" | ||
| version = "0.3.7" | ||
| version = "0.3.8" |
There was a problem hiding this comment.
There are a few dependency updates in here that are unrelated as far as I can tell?
Totally fine for me, just wanted to briefly point it out to make sure this was on purpose.
There was a problem hiding this comment.
This was on purpose. There were several dependabot updates which forced me to rebase this branch and fix conflicts so I decided to just update everything and test the changes extensively.
|
|
||
| /// Type of an entry in a changes list | ||
| #[derive(Debug, EnumString, EnumVariantNames, PartialEq)] | ||
| #[strum(serialize_all = "kebab-case")] |
…"Install dependencies"
Closes #148