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.1.1"
authors = ["Wavelens GmbH <info@wavelens.io>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Build 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]
formats = [
    "dep:arrow",
    "dep:parquet",
]

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

[[example]]
name = "live"
path = "examples/live.rs"

[[example]]
name = "retry"
path = "examples/retry.rs"

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

[[example]]
name = "word_count"
path = "examples/word_count.rs"

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

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

[dependencies.anyhow]
version = "1"

[dependencies.arrow]
version = "59"
optional = true

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

[dependencies.parquet]
version = "59"
features = ["arrow"]
optional = true

[dependencies.thiserror]
version = "2"

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