-
Notifications
You must be signed in to change notification settings - Fork 295
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (32 loc) · 1.2 KB
/
Cargo.toml
File metadata and controls
37 lines (32 loc) · 1.2 KB
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
28
29
30
31
32
33
34
35
36
37
[package]
name = "timely"
version = "0.28.0"
authors = ["Frank McSherry <fmcsherry@me.com>"]
readme = "../README.md"
edition.workspace = true
rust-version.workspace = true
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"
[lints]
workspace = true
[features]
default = ["getopts"]
getopts = ["dep:getopts", "timely_communication/getopts"]
[dependencies]
columnar = { workspace = true }
columnation = "0.1"
getopts = { version = "0.2.24", optional = true }
bincode = { version = "1.3" }
byteorder = "1.5"
itertools = "0.14.0"
serde = { version = "1.0", features = ["derive"] }
timely_bytes = { path = "../bytes", version = "0.28" }
timely_logging = { path = "../logging", version = "0.28" }
timely_communication = { path = "../communication", version = "0.28", default-features = false }
timely_container = { path = "../container", version = "0.28" }
smallvec = { version = "1.15.1", features = ["serde", "const_generics"] }