File tree Expand file tree Collapse file tree 3 files changed +4
-8
lines changed
Expand file tree Collapse file tree 3 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ resolver = "2"
33members = [
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"
3636flate2 = " 1.0"
3737hashlink = " 0.9"
3838lazy_static = " 1.4"
39- memchr = " 2.3"
4039num = { version = " 0.4" , default-features = false }
4140num-integer = " 0.1.46"
4241pkg-config = " 0.3.24"
@@ -63,4 +62,4 @@ unicase = "2.6.0"
6362url = " 2.1"
6463uuid = " 1.0"
6564vcpkg = " 0.2"
66- arrow = { version = " 54.2.1 " , default-features = false }
65+ arrow = { version = " 55 " , default-features = false }
Original file line number Diff line number Diff line change @@ -51,7 +51,6 @@ lazy_static = { workspace = true, optional = true }
5151byteorder = { workspace = true , features = [" i128" ], optional = true }
5252fallible-iterator = { workspace = true }
5353fallible-streaming-iterator = { workspace = true }
54- memchr = { workspace = true }
5554uuid = { workspace = true , optional = true }
5655smallvec = { workspace = true }
5756cast = { 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 ]
8886features = [" vtab" , " vtab-arrow" ]
8987all-features = false
Original file line number Diff line number Diff line change @@ -169,11 +169,10 @@ impl InnerConnection {
169169mod 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 {
You can’t perform that action at this time.
0 commit comments