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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v5
- uses: dtolnay/rust-toolchain@master # avoid the tag here to prevent dependabot from updating it
with:
toolchain: "1.86"
toolchain: "1.88"
- run: cargo check --all-targets --all-features

fmt:
Expand All @@ -28,7 +28,7 @@ jobs:
- uses: actions/checkout@v5
- uses: dtolnay/rust-toolchain@master # avoid the tag here to prevent dependabot from updating it
with:
toolchain: "1.86"
toolchain: "1.88"
components: rustfmt
- run: cargo fmt --all --check

Expand All @@ -39,7 +39,7 @@ jobs:
- uses: actions/checkout@v5
- uses: dtolnay/rust-toolchain@master # avoid the tag here to prevent dependabot from updating it
with:
toolchain: "1.86"
toolchain: "1.88"
- run: cargo test --all-targets --all-features

clippy:
Expand All @@ -49,7 +49,7 @@ jobs:
- uses: actions/checkout@v5
- uses: dtolnay/rust-toolchain@master # avoid the tag here to prevent dependabot from updating it
with:
toolchain: "1.86"
toolchain: "1.88"
components: clippy
- uses: clechasseur/[email protected]
with:
Expand Down
22 changes: 5 additions & 17 deletions Cargo.lock

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

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@ members = [
"open-build-service-api",
"open-build-service-mock"
]

[workspace.package]
repository = "https://github.com/collabora/open-build-service-rs"
2 changes: 2 additions & 0 deletions open-build-service-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ version = "0.1.0"
authors = ["Sjoerd Simons <[email protected]>"]
edition = "2024"
license = "MIT OR Apache-2.0"
description = "Client for the Open Build Service API"
repository.workspace = true

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
4 changes: 3 additions & 1 deletion open-build-service-mock/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ version = "0.1.0"
authors = ["Sjoerd Simons <[email protected]>"]
edition = "2024"
license = "MIT OR Apache-2.0"
description = "Mock crate for the Open Build Service API"
repository.workspace = true

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand All @@ -16,5 +18,5 @@ rand = "0.9.2"
serde = "1.0.217"
strum = "0.27"
strum_macros = "0.23"
wiremock = "0.6.2"
wiremock = "0.6.5"
base64ct = { version = "1.6.0", features = ["std"] }
Loading