[package] name = "timely-master" version = "0.13.0-dev.1" authors = ["Frank McSherry "] readme = "../README.md" edition = "2018" description = "A low-latency data-parallel dataflow system in Rust" # These URLs point to more information about the repository 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" [lib] name = "timely" [features] default = ["getopts"] bincode= ["timely-communication-master/bincode"] getopts = ["getopts-dep", "timely-communication-master/getopts"] [dependencies] getopts-dep = { package = "getopts", version = "0.2.14", optional = true } serde = "1.0" serde_derive = "1.0" abomonation = "0.7.3" abomonation_derive = "0.5" timely-bytes-master = { path = "../bytes", version = "=0.13.0-dev.1" } timely-logging-master = { path = "../logging", version = "=0.13.0-dev.1" } timely-communication-master = { path = "../communication", version = "=0.13.0-dev.1", default-features = false } timely-container-master = { path = "../container", version = "=0.13.0-dev.1" } crossbeam-channel = "0.5.0" futures-util = "0.3" [dev-dependencies] # timely_sort="0.1.6" rand = { version = "0.8", features = ["small_rng"] }