Skip to content

Commit a4d64a1

Browse files
AdamGSMaxxen
authored andcommitted
upgrade arrow-rs to 55
1 parent bb47f26 commit a4d64a1

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ resolver = "2"
33
members = [
44
"crates/duckdb",
55
"crates/libduckdb-sys",
6-
"crates/duckdb-loadable-macros"
6+
"crates/duckdb-loadable-macros",
77
]
88

99
[workspace.package]
@@ -36,7 +36,6 @@ fallible-streaming-iterator = "0.1"
3636
flate2 = "1.0"
3737
hashlink = "0.9"
3838
lazy_static = "1.4"
39-
memchr = "2.3"
4039
num = { version = "0.4", default-features = false }
4140
num-integer = "0.1.46"
4241
pkg-config = "0.3.24"
@@ -63,4 +62,4 @@ unicase = "2.6.0"
6362
url = "2.1"
6463
uuid = "1.0"
6564
vcpkg = "0.2"
66-
arrow = { version = "54.2.1", default-features = false }
65+
arrow = { version = "55", default-features = false }

crates/duckdb/Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ lazy_static = { workspace = true, optional = true }
5151
byteorder = { workspace = true, features = ["i128"], optional = true }
5252
fallible-iterator = { workspace = true }
5353
fallible-streaming-iterator = { workspace = true }
54-
memchr = { workspace = true }
5554
uuid = { workspace = true, optional = true }
5655
smallvec = { workspace = true }
5756
cast = { workspace = true, features = ["std"] }
@@ -83,7 +82,6 @@ pretty_assertions = { workspace = true }
8382
# name = "data_types"
8483
# harness = false
8584

86-
8785
[package.metadata.docs.rs]
8886
features = ["vtab", "vtab-arrow"]
8987
all-features = false

crates/duckdb/src/vtab/mod.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -169,11 +169,10 @@ impl InnerConnection {
169169
mod test {
170170
use super::*;
171171
use crate::core::{Inserter, LogicalTypeId};
172-
use std::sync::atomic::AtomicBool;
173-
use std::sync::atomic::Ordering;
174172
use std::{
175173
error::Error,
176-
ffi::{c_char, CString},
174+
ffi::CString,
175+
sync::atomic::{AtomicBool, Ordering},
177176
};
178177

179178
struct HelloBindData {

0 commit comments

Comments
 (0)