[package]
edition = "2021"
rust-version = "1.82.0"
name = "palimpsest-dataflow"
version = "0.1.1"
authors = ["colton@thousandbirds.ai"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Postgres WAL-backed live query sync engine."
homepage = "https://github.com/thousandbirds/palimpsest"
readme = false
keywords = [
"postgres",
"wal",
"sync",
"dataflow",
"grpc",
]
categories = [
"database",
"network-programming",
"wasm",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/thousandbirds/palimpsest"
[features]
default = ["timely/getopts"]
[lib]
name = "palimpsest_dataflow"
path = "src/lib.rs"
[[example]]
name = "bench_host"
path = "examples/bench_host.rs"
[[test]]
name = "bfs"
path = "tests/bfs.rs"
[[test]]
name = "import"
path = "tests/import.rs"
[[test]]
name = "join"
path = "tests/join.rs"
[[test]]
name = "operator_oracle"
path = "tests/operator_oracle.rs"
[[test]]
name = "reduce"
path = "tests/reduce.rs"
[[test]]
name = "scc"
path = "tests/scc.rs"
[[test]]
name = "trace"
path = "tests/trace.rs"
[[bench]]
name = "operator_criterion"
path = "benches/operator_criterion.rs"
harness = false
[[bench]]
name = "operator_throughput"
path = "benches/operator_throughput.rs"
harness = false
[dependencies.bytes]
version = "1.7"
[dependencies.columnar]
version = "0.11"
default-features = false
[dependencies.columnation]
version = "0.1"
[dependencies.fnv]
version = "1.0"
[dependencies.palimpsest-sql]
version = "0.1.1"
[dependencies.palimpsest-wal]
version = "0.1.1"
[dependencies.paste]
version = "1.0"
[dependencies.petgraph]
version = "0.7"
[dependencies.serde]
version = "1.0"
features = [
"derive",
"derive",
]
[dependencies.smallvec]
version = "1.13"
[dependencies.sqlparser]
version = "0.52"
features = ["visitor"]
[dependencies.thiserror]
version = "2.0"
[dependencies.timely]
version = "0.25"
[dependencies.tokio]
version = "1.40"
features = [
"macros",
"rt-multi-thread",
"sync",
]
[dev-dependencies.bytemuck]
version = "1.18"
[dev-dependencies.criterion]
version = "0.5"
features = [
"plotters",
"cargo_bench_support",
]
default-features = false
[dev-dependencies.graph_map]
version = "0.1"
[dev-dependencies.itertools]
version = "0.13"
[dev-dependencies.mimalloc]
version = "0.1"
[dev-dependencies.proptest]
version = "1.5"
[dev-dependencies.rand]
version = "0.4"