Skip to content

Commit 61a3de6

Browse files
authored
Update to timely 0.19 (#580)
Signed-off-by: Moritz Hoffmann <[email protected]>
1 parent 9bd35f3 commit 61a3de6

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ resolver = "2"
1717

1818
[workspace.dependencies]
1919
differential-dataflow = { path = "differential-dataflow", default-features = false, version = "0.13.6" }
20-
timely = { version = "0.18", default-features = false }
20+
timely = { version = "0.19", default-features = false }
2121
#timely = { path = "../timely-dataflow/timely/", default-features = false }
2222

2323
[profile.release]

experiments/src/bin/deals-interactive.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
use std::time::Instant;
22

33
use rand::{Rng, SeedableRng, StdRng};
4-
54
use timely::dataflow::*;
65
use timely::WorkerConfig;
76

@@ -28,8 +27,7 @@ fn main() {
2827
let workers: usize = std::env::args().nth(4).unwrap().parse().unwrap();
2928
let inspect = std::env::args().any(|x| x == "inspect");
3029

31-
use timely::communication::allocator::zero_copy::allocator_process::ProcessBuilder;
32-
let allocators = ProcessBuilder::new_vector(workers);
30+
let (allocators, _others) = timely::CommunicationConfig::ProcessBinary(workers).try_build().unwrap();
3331
timely::execute::execute_from(allocators, Box::new(()), WorkerConfig::default(), move |worker| {
3432

3533
// timely::execute_from_args(std::env::args().skip(1), move |worker| {

0 commit comments

Comments
 (0)