-
Notifications
You must be signed in to change notification settings - Fork 292
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (23 loc) · 880 Bytes
/
Cargo.toml
File metadata and controls
27 lines (23 loc) · 880 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "timely_communication"
version = "0.17.1"
authors = ["Frank McSherry <fmcsherry@me.com>"]
description = "Communication layer for timely dataflow"
edition.workspace = true
# 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"
[features]
default = ["getopts"]
[dependencies]
columnar = { workspace = true }
getopts = { version = "0.2.21", optional = true }
byteorder = "1.5"
serde = { version = "1.0", features = ["derive"] }
timely_bytes = { path = "../bytes", version = "0.13" }
timely_container = { path = "../container", version = "0.14.0" }
timely_logging = { path = "../logging", version = "0.13" }
crossbeam-channel = "0.5"