[package]
edition = "2021"
rust-version = "1.95"
name = "graphrefly-operators"
version = "0.0.7"
authors = ["David Chen<clfhhc@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Built-in operator node types for GraphReFly (map, filter, scan, switchMap, valve, gate, retry, …)"
homepage = "https://graphrefly.dev"
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/graphrefly/graphrefly-rs"
[features]
default = []
proptest = []
[lib]
name = "graphrefly_operators"
path = "src/lib.rs"
[[test]]
name = "arc_cycle_break"
path = "tests/arc_cycle_break.rs"
[[test]]
name = "buffer"
path = "tests/buffer.rs"
[[test]]
name = "combine"
path = "tests/combine.rs"
[[test]]
name = "control"
path = "tests/control.rs"
[[test]]
name = "dead_source_e2e"
path = "tests/dead_source_e2e.rs"
[[test]]
name = "flow"
path = "tests/flow.rs"
[[test]]
name = "higher_order"
path = "tests/higher_order.rs"
[[test]]
name = "phase_g_op_scratch"
path = "tests/phase_g_op_scratch.rs"
[[test]]
name = "slice_h_factory_errors"
path = "tests/slice_h_factory_errors.rs"
[[test]]
name = "source"
path = "tests/source.rs"
[[test]]
name = "stratify"
path = "tests/stratify.rs"
[[test]]
name = "subscription"
path = "tests/subscription.rs"
[[test]]
name = "temporal"
path = "tests/temporal.rs"
[[test]]
name = "transform"
path = "tests/transform.rs"
[dependencies.ahash]
version = "0.8"
[dependencies.graphrefly-core]
version = "0.0.7"
features = ["tokio"]
[dependencies.parking_lot]
version = "0.12"
features = ["arc_lock"]
default-features = false
[dependencies.smallvec]
version = "1.13"
features = [
"union",
"const_new",
]
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"time",
"sync",
"rt",
"macros",
]
default-features = false
[dependencies.tokio-util]
version = "0.7"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tokio]
version = "1"
features = [
"time",
"sync",
"rt",
"macros",
"rt-multi-thread",
"test-util",
]
default-features = false