Skip to content

Commit 0048ecd

Browse files
authored
Merge pull request #84 from zeenix/releasing-0.3.0
πŸ”– Release 0.3.0
2 parents 1d0adb4 + 088a2cb commit 0048ecd

3 files changed

Lines changed: 25 additions & 19 deletions

File tree

β€Ž.github/workflows/ci.ymlβ€Ž

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
toolchain: stable
2525
- uses: Swatinem/rust-cache@v2
2626
- name: Run tests on stable Rust
27-
run: cargo test
27+
run: cargo --locked test
2828

2929
test_nightly:
3030
env:
@@ -41,7 +41,7 @@ jobs:
4141
toolchain: nightly
4242
- uses: Swatinem/rust-cache@v2
4343
- name: Run tests on nightly Rust
44-
run: cargo test
44+
run: cargo --locked test
4545

4646
fmt:
4747
runs-on: ubuntu-latest
@@ -53,7 +53,7 @@ jobs:
5353
components: rustfmt
5454
- uses: Swatinem/rust-cache@v2
5555
- name: Check formatting
56-
run: cargo fmt --all -- --check
56+
run: cargo --locked fmt --all -- --check
5757

5858
clippy:
5959
runs-on: ubuntu-latest
@@ -65,4 +65,4 @@ jobs:
6565
components: clippy
6666
- uses: Swatinem/rust-cache@v2
6767
- name: Check common mistakes
68-
run: cargo clippy --all -- -D warnings
68+
run: cargo --locked clippy --all -- -D warnings

β€ŽCargo.lockβ€Ž

Lines changed: 18 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€ŽCargo.tomlβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "busd"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = ["Zeeshan Ali Khan <zeeshanak@gnome.org>"]
55
description = "A D-Bus bus (broker) implementation"
66
edition = "2021"
@@ -20,11 +20,11 @@ name = "busd"
2020
path = "src/bin/busd.rs"
2121

2222
[dependencies]
23-
zbus = { git = "https://github.com/dbus2/zbus/", features = [
23+
#zbus = { git = "https://github.com/dbus2/zbus/", features = [
24+
zbus = { version = "4.2.0", features = [
2425
"tokio",
2526
"bus-impl",
2627
], default-features = false }
27-
#zbus = { version = "4", features = ["tokio", "bus-impl"], default-features = false }
2828
tokio = { version = "1.37.0", features = [
2929
"macros",
3030
"rt-multi-thread",

0 commit comments

Comments
Β (0)