File tree Expand file tree Collapse file tree 3 files changed +11
-11
lines changed
Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ license = "Apache-2.0"
99name = " snowflake-api"
1010readme = " README.md"
1111repository = " https://github.com/mycelial/snowflake-rs"
12- version = " 0.8.1 "
12+ version = " 0.9.0 "
1313
1414[features ]
1515all = [" cert-auth" , " polars" ]
@@ -19,7 +19,7 @@ default = ["cert-auth"]
1919polars = [" dep:polars-core" , " dep:polars-io" ]
2020
2121[dependencies ]
22- arrow = " 51 "
22+ arrow = " 52 "
2323async-trait = " 0.1"
2424base64 = " 0.22"
2525bytes = " 1"
@@ -49,12 +49,12 @@ polars-io = { version = ">=0.32", features = [
4949
5050# put request support
5151glob = { version = " 0.3" }
52- object_store = { version = " 0.9 " , features = [" aws" ] }
52+ object_store = { version = " 0.10 " , features = [" aws" ] }
5353tokio = { version = " 1" , features = [" macros" , " rt-multi-thread" ] }
5454
5555[dev-dependencies ]
5656anyhow = " 1"
57- arrow = { version = " 51 " , features = [" prettyprint" ] }
57+ arrow = { version = " 52 " , features = [" prettyprint" ] }
5858clap = { version = " 4" , features = [" derive" ] }
5959pretty_env_logger = " 0.5"
6060tokio = { version = " 1.35" , features = [" macros" , " rt-multi-thread" ] }
Original file line number Diff line number Diff line change @@ -5,17 +5,17 @@ version = "0.1.0"
55
66[dependencies ]
77anyhow = " 1"
8- arrow = { version = " 51 " , features = [" prettyprint" ] }
8+ arrow = { version = " 52 " , features = [" prettyprint" ] }
99dotenv = " 0.15"
1010snowflake-api = { path = " ../../../snowflake-api" }
1111
12- opentelemetry = " 0.22 "
13- opentelemetry-otlp = " 0.15 "
14- opentelemetry-semantic-conventions = " 0.14 "
15- opentelemetry_sdk = { version = " 0.22 " , features = [" rt-tokio" ] }
12+ opentelemetry = " 0.23 "
13+ opentelemetry-otlp = " 0.16 "
14+ opentelemetry-semantic-conventions = " 0.15 "
15+ opentelemetry_sdk = { version = " 0.23 " , features = [" rt-tokio" ] }
1616reqwest-middleware = " 0.3"
1717reqwest-tracing = { version = " 0.5" , features = [" opentelemetry_0_21" ] }
1818tokio = { version = " 1" , features = [" full" ] }
1919tracing = " 0.1"
20- tracing-opentelemetry = " 0.23 "
20+ tracing-opentelemetry = " 0.24 "
2121tracing-subscriber = " 0.3"
Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ async fn put_file<T: ObjectStore>(
142142 let src_path = object_store:: path:: Path :: parse ( src_path) ?;
143143 let fs = LocalFileSystem :: new ( ) . get ( & src_path) . await ?;
144144
145- store. put ( & dest_path, fs. bytes ( ) . await ?) . await ?;
145+ store. put ( & dest_path, fs. bytes ( ) . await ?. into ( ) ) . await ?;
146146
147147 Ok :: < ( ) , SnowflakeApiError > ( ( ) )
148148}
You can’t perform that action at this time.
0 commit comments