Skip to content
Open
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
10 changes: 7 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,24 @@ jobs:
archive_name: mcumgr-client-windows-x86
os: ubuntu-latest
file_extension: .exe
- target: x86_64-unknown-linux-musl
- target: x86_64-unknown-linux-gnu
archive_name: mcumgr-client-linux-x86
os: ubuntu-latest
- target: aarch64-unknown-linux-musl
- target: aarch64-unknown-linux-gnu
archive_name: mcumgr-client-linux-aarch64
os: ubuntu-24.04-arm

steps:
- uses: actions/checkout@v4

- name: Install dependencies
- name: Install windows dependencies
if: matrix.target == 'x86_64-pc-windows-gnu'
run: sudo apt-get install mingw-w64

- name: Install linux dependencies
if: matrix.target == 'x86_64-unknown-linux-gnu' || matrix.target == 'aarch64-unknown-linux-gnu'
run: sudo apt-get update && sudo apt-get install -y libdbus-1-dev pkg-config

- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
Expand Down
4 changes: 4 additions & 0 deletions Cargo.lock

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

4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ include = [

[dependencies]
anyhow = "1.0"
btleplug = "0.11"
futures = "0.3"
tokio = { version = "1", features = ["rt", "rt-multi-thread", "time"] }
uuid = "1"
base64 = "0.21"
bincode = "1.3"
byteorder = "1.4"
Expand Down
Loading