Skip to content

Commit

Permalink
Merge pull request #84 from zeenix/releasing-0.3.0
Browse files Browse the repository at this point in the history
 🔖 Release 0.3.0
  • Loading branch information
zeenix authored May 1, 2024
2 parents 1d0adb4 + 088a2cb commit 0048ecd
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 19 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
toolchain: stable
- uses: Swatinem/rust-cache@v2
- name: Run tests on stable Rust
run: cargo test
run: cargo --locked test

test_nightly:
env:
Expand All @@ -41,7 +41,7 @@ jobs:
toolchain: nightly
- uses: Swatinem/rust-cache@v2
- name: Run tests on nightly Rust
run: cargo test
run: cargo --locked test

fmt:
runs-on: ubuntu-latest
Expand All @@ -53,7 +53,7 @@ jobs:
components: rustfmt
- uses: Swatinem/rust-cache@v2
- name: Check formatting
run: cargo fmt --all -- --check
run: cargo --locked fmt --all -- --check

clippy:
runs-on: ubuntu-latest
Expand All @@ -65,4 +65,4 @@ jobs:
components: clippy
- uses: Swatinem/rust-cache@v2
- name: Check common mistakes
run: cargo clippy --all -- -D warnings
run: cargo --locked clippy --all -- -D warnings
30 changes: 18 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "busd"
version = "0.2.0"
version = "0.3.0"
authors = ["Zeeshan Ali Khan <[email protected]>"]
description = "A D-Bus bus (broker) implementation"
edition = "2021"
Expand All @@ -20,11 +20,11 @@ name = "busd"
path = "src/bin/busd.rs"

[dependencies]
zbus = { git = "https://github.com/dbus2/zbus/", features = [
#zbus = { git = "https://github.com/dbus2/zbus/", features = [
zbus = { version = "4.2.0", features = [
"tokio",
"bus-impl",
], default-features = false }
#zbus = { version = "4", features = ["tokio", "bus-impl"], default-features = false }
tokio = { version = "1.37.0", features = [
"macros",
"rt-multi-thread",
Expand Down

0 comments on commit 0048ecd

Please sign in to comment.