Skip to content

Commit f6393fe

Browse files
fix: upload type
1 parent f69b67e commit f6393fe

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ tower-http = { version = "0.3.0", features = [ "trace" ] }
2020
opentelemetry = "0.18.0"
2121
tracing-opentelemetry = "0.18.0"
2222
futures = "0.3"
23-
google-cloud-storage = { git = "https://github.com/yoshidan/google-cloud-rust", branch="main" }
24-
google-cloud-default = { git = "https://github.com/yoshidan/google-cloud-rust", branch="main", features=[ "storage", "rustls-tls"]}
23+
google-cloud-storage = "0.9.0"
24+
google-cloud-default = { version = "0.1.0", features= [ "storage", "rustls-tls"]}

src/storage.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ pub async fn upload(filename: &str, file: Vec<u8>) -> Result<(), Error> {
5454
..Default::default()
5555
},
5656
file,
57-
UploadType::Simple(media),
57+
&UploadType::Simple(media),
5858
None,
5959
)
6060
.await;

0 commit comments

Comments
 (0)