[package]
edition = "2021"
rust-version = "1.95"
name = "fv-streams-runtime"
version = "0.6.0"
build = false
exclude = [".gitignore"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The dataflow runtime of FusionVault Streams: tasks over bounded in-memory edges carrying Arrow batches, watermarks and barriers in band; epochs; the cross-worker exchange; placement; the cluster handshake."
documentation = "https://docs.rs/fv-streams-runtime"
readme = "README.md"
keywords = [
"streaming",
"dataflow",
"arrow",
"runtime",
]
categories = [
"concurrency",
"asynchronous",
]
license = "Apache-2.0"
repository = "https://github.com/FusionVault/streams"
[lib]
name = "fv_streams_runtime"
path = "src/lib.rs"
[dependencies.arrow]
version = "58"
[dependencies.bytes]
version = "1"
[dependencies.chrono]
version = "0.4"
features = [
"std",
"clock",
]
default-features = false
[dependencies.fv-streams-exchange]
version = "0.6.0"
[dependencies.fv-streams-state]
version = "0.6.0"
[dependencies.fv-streams-types]
version = "0.6.0"
[dependencies.postcard]
version = "1"
features = ["use-std"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.tokio]
version = "1"
features = [
"rt",
"rt-multi-thread",
"time",
"net",
"io-util",
"sync",
]
[lints.clippy.all]
level = "warn"
priority = -1