apalis-codec 0.1.0-rc.1

Codec utilities for using various serialization formats in apalis
Documentation
[dependencies.apalis-core]
default-features = false
version = "1.0.0-rc.1"

[dependencies.bincode]
optional = true
version = "2.0.1"

[dependencies.rmp-serde]
optional = true
version = "1.3.1"

[dependencies.serde]
features = ["derive"]
optional = true
version = "1.0"

[dependencies.serde_json]
optional = true
version = "1"

[dependencies.thiserror]
optional = true
version = "2.0.0"

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

[lib]
name = "apalis_codec"
path = "src/lib.rs"

[lints.clippy]
await_holding_lock = "warn"
dbg_macro = "warn"
empty_enum = "warn"
enum_glob_use = "warn"
equatable_if_let = "warn"
exit = "warn"
filter_map_next = "warn"
fn_params_excessive_bools = "warn"
if_let_mutex = "warn"
implicit_clone = "warn"
imprecise_flops = "warn"
inefficient_to_string = "warn"
linkedlist = "warn"
lossy_float_literal = "warn"
macro_use_imports = "warn"
manual_let_else = "warn"
match_same_arms = "warn"
match_wildcard_for_single_variants = "warn"
mem_forget = "warn"
must_use_candidate = "warn"
needless_borrow = "warn"
needless_continue = "warn"
needless_pass_by_ref_mut = "warn"
needless_pass_by_value = "warn"
option_option = "warn"
redundant_clone = "warn"
ref_option = "warn"
rest_pat_in_fully_bound_structs = "warn"
return_self_not_must_use = "warn"
single_match_else = "warn"
str_to_string = "warn"
suboptimal_flops = "warn"
todo = "warn"
trivially_copy_pass_by_ref = "warn"
type_complexity = "allow"
uninlined_format_args = "warn"
unnested_or_patterns = "warn"
unused_self = "warn"
use_self = "warn"
verbose_file_reads = "warn"

[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"
unreachable_pub = "warn"
unsafe_code = "forbid"

[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1

[package]
authors = ["Njuguna Mureithi <mureithinjuguna@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["encoding", "parsing", "concurrency"]
description = "Codec utilities for using various serialization formats in apalis"
documentation = "https://docs.rs/apalis-codec"
edition = "2024"
homepage = "https://github.com/apalis-dev/apalis"
keywords = ["apalis", "codec", "job", "serde", "rust"]
license = "MIT OR Apache-2.0"
name = "apalis-codec"
readme = "README.md"
repository = "https://github.com/apalis-dev/apalis"
resolver = "2"
rust-version = "1.85"
version = "0.1.0-rc.1"