Skip to content

Commit 3bbb127

Browse files
committed
Update to crates.io columnar
1 parent f6ef612 commit 3bbb127

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

container/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@ edition.workspace = true
99
columnation = "0.1"
1010
flatcontainer = "0.5"
1111
serde = { version = "1.0", features = ["derive"] }
12+
columnar = "0.1"
1213
# columnar = { path = "../../columnar" }
13-
columnar = { git = "https://github.com/frankmcsherry/columnar" }
14+
# columnar = { git = "https://github.com/frankmcsherry/columnar" }

timely/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,5 @@ smallvec = { version = "1.13.2", features = ["serde", "const_generics"] }
3131

3232
[dev-dependencies]
3333
rand = { version = "0.8", features = ["small_rng"] }
34-
columnar = { git = "https://github.com/frankmcsherry/columnar" }
34+
columnar = "0.1"
35+
# columnar = { git = "https://github.com/frankmcsherry/columnar" }

timely/examples/columnar.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ fn main() {
6262
queues
6363
.entry(time.retain())
6464
.or_insert(Vec::new())
65-
.push(data.take());
65+
.push(std::mem::take(data));
6666
}
6767

6868
for (key, val) in queues.iter_mut() {

0 commit comments

Comments
 (0)