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
20 changes: 15 additions & 5 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
on:
push:
tags: ['v*']
tags: ["v*"]

name: Continuous delivery
permissions:
Expand Down Expand Up @@ -42,16 +42,26 @@ jobs:
with:
command: publish
args: ${{ env.PUBLISH_OPTS }} -p apalis-core
- name: publish apalis-workflow
- name: publish apalis-sql
uses: actions-rs/cargo@v1
with:
command: publish
args: ${{ env.PUBLISH_OPTS }} -p apalis-workflow
- name: publish apalis-sql
args: ${{ env.PUBLISH_OPTS }} -p apalis-sql
- name: publish apalis-codec
uses: actions-rs/cargo@v1
with:
command: publish
args: ${{ env.PUBLISH_OPTS }} -p apalis-sql
args: ${{ env.PUBLISH_OPTS }} -p apalis-codec
- name: publish apalis-file-storage
uses: actions-rs/cargo@v1
with:
command: publish
args: ${{ env.PUBLISH_OPTS }} -p apalis-file-storage
- name: publish apalis-workflow
uses: actions-rs/cargo@v1
with:
command: publish
args: ${{ env.PUBLISH_OPTS }} -p apalis-workflow
- name: publish apalis
uses: actions-rs/cargo@v1
with:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ All notable changes to this project are documented in this file.

## [Unreleased]

- **chore**: chore: prep codec and filestorage crates ([#653](https://github.com/geofmureithi/apalis/pull/653))
- **chore**: bump: introducing rc.1 ([#646](https://github.com/geofmureithi/apalis/pull/646))
- **chore**: feat: refactor and granulize traits ([#586](https://github.com/geofmureithi/apalis/pull/586))
- **refactor**: refactor: crates, workflow and BackendExt ([#623](https://github.com/geofmureithi/apalis/pull/623))
Expand Down
33 changes: 15 additions & 18 deletions Cargo.lock

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

16 changes: 8 additions & 8 deletions supply-chain/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -632,10 +632,6 @@ criteria = "safe-to-deploy"
version = "0.9.12"
criteria = "safe-to-deploy"

[[exemptions.paste]]
version = "1.0.15"
criteria = "safe-to-deploy"

[[exemptions.percent-encoding]]
version = "2.3.2"
criteria = "safe-to-deploy"
Expand Down Expand Up @@ -753,11 +749,11 @@ version = "0.17.14"
criteria = "safe-to-deploy"

[[exemptions.rmp]]
version = "0.8.14"
version = "0.8.15"
criteria = "safe-to-deploy"

[[exemptions.rmp-serde]]
version = "1.3.0"
version = "1.3.1"
criteria = "safe-to-deploy"

[[exemptions.rustc-demangle]]
Expand Down Expand Up @@ -877,7 +873,7 @@ version = "1.0.228"
criteria = "safe-to-deploy"

[[exemptions.serde_json]]
version = "1.0.146"
version = "1.0.147"
criteria = "safe-to-deploy"

[[exemptions.serde_urlencoded]]
Expand Down Expand Up @@ -941,7 +937,7 @@ version = "0.13.2"
criteria = "safe-to-deploy"

[[exemptions.tempfile]]
version = "3.23.0"
version = "3.24.0"
criteria = "safe-to-deploy"

[[exemptions.termcolor]]
Expand Down Expand Up @@ -1319,3 +1315,7 @@ criteria = "safe-to-deploy"
[[exemptions.zerovec-derive]]
version = "0.11.2"
criteria = "safe-to-deploy"

[[exemptions.zmij]]
version = "0.1.7"
criteria = "safe-to-deploy"
12 changes: 11 additions & 1 deletion utils/apalis-codec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,30 @@ version = "0.1.0-rc.1"
rust-version.workspace = true
edition.workspace = true
repository.workspace = true
license = "MIT OR Apache-2.0"
description = "Codec utilities for using various serialization formats in apalis"
authors = ["Njuguna Mureithi <[email protected]>"]
homepage = "https://github.com/apalis-dev/apalis"
documentation = "https://docs.rs/apalis-codec"
readme = "README.md"
keywords = ["apalis", "codec", "job", "serde", "rust"]
categories = ["encoding", "parsing", "serialization", "concurrency"]

[features]
default = ["json"]
## Enable serde_json support
json = ["apalis-core/serde", "dep:serde", "dep:serde_json"]
## Enable bincode support
bincode = ["dep:bincode", "dep:thiserror"]
## Enable MessagePack support
msgpack = ["dep:rmp-serde", "dep:serde", "apalis-core/serde", "dep:thiserror"]

[dependencies]
apalis-core = { path = "../../apalis-core", version = "1.0.0-rc.1", default-features = false }
serde = { version = "1.0", features = ["derive"], optional = true }
serde_json = { version = "1", optional = true }
bincode = { version = "2.0.1", optional = true }
rmp-serde = { version = "1.3.0", optional = true }
rmp-serde = { version = "1.3.1", optional = true }
thiserror = { version = "2.0.0", optional = true }

[lints]
Expand Down
5 changes: 5 additions & 0 deletions utils/apalis-file-storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ authors = ["Njuguna Mureithi <[email protected]>"]
license = "MIT"
description = "A test-friendly single process file-based storage backend for apalis"
publish = true
documentation = "https://docs.rs/apalis-file-storage"
homepage = "https://github.com/apalis-dev/apalis"
readme = "README.md"
keywords = ["apalis", "file", "storage", "backend", "rust"]
categories = ["database", "filesystem", "asynchronous", "data-structures"]

[lib]

Expand Down
Loading