bask 0.2.1

Build Tasks: an async task-queue pipeline engine with pluggable IO, columnar formats, and predefined tasks
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "bask"
version = "0.2.1"
authors = ["Wavelens GmbH <info@wavelens.io>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Build Tasks: an async task-queue pipeline engine with pluggable IO, columnar formats, and predefined tasks"
readme = "README.md"
keywords = [
    "pipeline",
    "dataflow",
    "workers",
    "streaming",
    "async",
]
categories = [
    "asynchronous",
    "concurrency",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/wavelens/bask"

[package.metadata.docs.rs]
all-features = true

[features]
cli = [
    "dataset",
    "bask-core/cli",
    "dep:anyhow",
]
dataset = [
    "io",
    "bask-io/dataset",
]
default = [
    "io",
    "formats",
    "dataset",
    "cli",
    "download",
    "object-store",
    "postgres",
]
download = [
    "io",
    "bask-io/download",
]
formats = [
    "io",
    "dep:bask-formats",
    "dep:bask-tasks",
]
io = ["dep:bask-io"]
object-store = [
    "io",
    "bask-io/object-store",
]
postgres = [
    "formats",
    "bask-formats/postgres",
]

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

[[example]]
name = "cli"
path = "examples/cli.rs"
required-features = ["cli"]

[[example]]
name = "dataset"
path = "examples/dataset.rs"
required-features = ["dataset"]

[[example]]
name = "io_convert"
path = "examples/io_convert.rs"
required-features = ["formats"]

[[example]]
name = "rebatch"
path = "examples/rebatch.rs"
required-features = ["formats"]

[[example]]
name = "streaming"
path = "examples/streaming.rs"
required-features = ["formats"]

[[test]]
name = "dataset"
path = "tests/dataset.rs"

[[test]]
name = "download"
path = "tests/download.rs"

[[test]]
name = "io"
path = "tests/io.rs"

[[test]]
name = "object_store"
path = "tests/object_store.rs"

[[test]]
name = "postgres"
path = "tests/postgres.rs"

[[test]]
name = "streaming"
path = "tests/streaming.rs"

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

[dependencies.bask-core]
version = "0.2.1"

[dependencies.bask-formats]
version = "0.2.1"
optional = true

[dependencies.bask-io]
version = "0.2.1"
optional = true

[dependencies.bask-tasks]
version = "0.2.1"
optional = true

[dev-dependencies.anyhow]
version = "1"

[dev-dependencies.arrow]
version = "59"
features = [
    "csv",
    "json",
    "ipc",
]

[dev-dependencies.async-trait]
version = "0.1"

[dev-dependencies.object_store]
version = "0.14"
features = ["aws"]

[dev-dependencies.rusqlite]
version = "0.40"
features = ["bundled"]

[dev-dependencies.serde]
version = "1"
features = ["derive"]

[dev-dependencies.serde_json]
version = "1"

[dev-dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "macros",
    "time",
]