[package]
edition = "2024"
rust-version = "1.85"
name = "tinyflow-framework"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Streaming runtime engine — checkpoint, chained task execution, and state store"
homepage = "https://github.com/dahai1996/tinyflow"
readme = false
keywords = [
"streaming",
"etl",
"checkpoint",
"micro-batch",
]
categories = ["database"]
license = "Apache-2.0"
repository = "https://github.com/dahai1996/tinyflow"
resolver = "2"
[lib]
name = "tinyflow_framework"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.log]
version = "0.4.33"
[dependencies.serde_json]
version = "1.0.150"
[dependencies.tinyflow-api]
version = "0.1"
[dependencies.tokio]
version = "1.52.3"
features = [
"rt",
"rt-multi-thread",
"macros",
"sync",
"time",
"signal",
]
[dependencies.turso]
version = "0.6.1"