Skip to content
Merged
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
11 changes: 6 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
push:
branches: [main, develop]
pull_request:
workflow_call:

env:
CARGO_TERM_COLOR: always
Expand Down Expand Up @@ -53,7 +54,7 @@ jobs:
working-directory: crates/web

- name: Cache cargo registry and trunk assets
uses: actions/cache@v5
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand All @@ -77,7 +78,7 @@ jobs:
uses: actions/checkout@v6

- name: Cache cargo registry and trunk assets
uses: actions/cache@v5
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand Down Expand Up @@ -127,7 +128,7 @@ jobs:
components: clippy

- name: Cache cargo registry and trunk assets
uses: actions/cache@v5
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand All @@ -154,7 +155,7 @@ jobs:
uses: dtolnay/rust-toolchain@nightly

- name: Cache cargo registry and trunk assets
uses: actions/cache@v5
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand Down Expand Up @@ -183,7 +184,7 @@ jobs:
uses: dtolnay/rust-toolchain@nightly

- name: Cache cargo registry and trunk assets
uses: actions/cache@v5
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,5 +94,5 @@ jobs:
run: |
cargo publish -p apalis-board-types
cargo publish -p apalis-board-web --allow-dirty
cargo publish -p apalis-board-api
cargo publish -p apalis-board
cargo publish -p apalis-board-api --allow-dirty
cargo publish -p apalis-board --allow-dirty
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ documentation = "https://docs.rs/apalis-board"
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = ["background-job", "background-task", "worker", "apalis"]
categories = ["http-server", "database"]
categories = ["database"]

[lib]

Expand All @@ -20,8 +20,8 @@ actix = ["apalis-board-api/actix"]
axum = ["apalis-board-api/axum"]

[dependencies]
apalis-board-web = { path = "crates/web", optional = true }
apalis-board-api = { path = "crates/api", optional = true }
apalis-board-web = { path = "crates/web", version = "1.0.0-rc.1", optional = true }
apalis-board-api = { path = "crates/api", version = "1.0.0-rc.1", optional = true }

[package.metadata.docs.rs]
# defines the configuration attribute `docsrs`
Expand Down
Loading
Loading