From 56d82f60c8c7bf769c200bce78c85526a9125fe2 Mon Sep 17 00:00:00 2001 From: Moritz Hoffmann Date: Fri, 28 Jun 2024 12:03:03 -0400 Subject: [PATCH] Bump flatcontainer to 0.5 Signed-off-by: Moritz Hoffmann --- container/Cargo.toml | 2 +- timely/src/order.rs | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/container/Cargo.toml b/container/Cargo.toml index 470172198..88d2ef563 100644 --- a/container/Cargo.toml +++ b/container/Cargo.toml @@ -7,5 +7,5 @@ license = "MIT" [dependencies] columnation = { git = "https://github.com/frankmcsherry/columnation" } -flatcontainer = "0.4" +flatcontainer = "0.5" serde = { version = "1.0"} diff --git a/timely/src/order.rs b/timely/src/order.rs index e9050b3f4..982724255 100644 --- a/timely/src/order.rs +++ b/timely/src/order.rs @@ -191,10 +191,11 @@ mod product { } pub mod flatcontainer { - use timely_container::flatcontainer::{Containerized, IntoOwned, Push, Region, ReserveItems}; + use timely_container::flatcontainer::{IntoOwned, Push, Region, RegionPreference, ReserveItems}; use super::Product; - impl Containerized for Product { + impl RegionPreference for Product { + type Owned = Product; type Region = ProductRegion; }