[package]
name = "timely"
version = "0.14.0"
authors = ["Frank McSherry <fmcsherry@me.com>"]
readme = "../README.md"
edition.workspace = true
description = "A low-latency data-parallel dataflow system in Rust"
documentation = "https://docs.rs/timely/"
homepage = "https://github.com/TimelyDataflow/timely-dataflow"
repository = "https://github.com/TimelyDataflow/timely-dataflow.git"
keywords = ["timely", "dataflow"]
license = "MIT"
[features]
default = ["getopts"]
getopts = ["getopts-dep", "timely_communication/getopts"]
[dependencies]
getopts-dep = { package = "getopts", version = "0.2.21", optional = true }
bincode = { version = "1.0" }
serde = { version = "1.0", features = ["derive"] }
timely_bytes = { path = "../bytes", version = "0.12" }
timely_logging = { path = "../logging", version = "0.12" }
timely_communication = { path = "../communication", version = "0.14", default-features = false }
timely_container = { path = "../container", version = "0.12" }
crossbeam-channel = "0.5"
smallvec = { version = "1.13.2", features = ["serde", "const_generics"] }
[dev-dependencies]
rand = { version = "0.8", features = ["small_rng"] }